| <html> | |
| <import src="../resources/dump-as-text.sky" /> | |
| <body> | |
| <script> | |
| document.registerElement("x-foo", { prototype: Object.create(HTMLElement.prototype, { createdCallback: { value: function () { this.innerHTML = "<x-foo>Hello</x-foo>"; } } }) }); | |
| document.createElement("x-foo"); | |
| console.log("PASS unless crash"); | |
| </script> | |
| </body> | |
| </html> |