mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-12 13:31:30 +00:00
16 lines
323 B
HTML
16 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<x-foo></x-foo>
|
|
<script>
|
|
var prototype = Object.create(HTMLElement.prototype);
|
|
prototype.createdCallback = function() {
|
|
createdCallbackCalled = true;
|
|
}
|
|
document.registerElement('x-foo', {prototype: prototype});
|
|
</script>
|
|
</body>
|
|
</html>
|