tenfourfox/dom/html/test/imports/file_element_upgrade.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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>