xhtml-crash.xhtml (397B)
1 <?xml version="1.0" encoding="utf-8"?> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <script> 5 customElements.define('custom-el-1', 6 class extends HTMLElement { 7 constructor () { 8 super() 9 this.attachShadow({ mode: 'open' }) 10 this.shadowRoot.innerHTML = '<span/>' 11 } 12 }) 13 </script> 14 </head> 15 <body> 16 <custom-el-1/>