bailout-order-custom-element-with-domain-frame.sub.html (266B)
1 <p>Text</p> 2 <script> 3 document.domain = "{{host}}"; 4 5 class CustomElement extends HTMLElement { 6 constructor() { 7 super(); 8 parent.onCustomElementReady(); 9 } 10 } 11 customElements.define("custom-element", CustomElement); 12 </script> 13 <custom-element></custom-element>