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