blob: ec4e7029f7c4761851f0e56e5ae26e6c76ed7130 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script>
proto = Object.create(HTMLElement.prototype, { createdCallback: { value: function() { this.innerHTML = "Hello"; } } });
document.registerElement("x-foo", { prototype: proto });
</script>
</head>
<body>
<x-foo></x-foo>
</body>
</html>