1493710.html (703B)
1 <html> 2 <head> 3 <style id="id_3"> 4 * { 5 position: absolute !important 6 </style> 7 <script> 8 function start() { 9 window.CustomElement0 = class extends HTMLElement { 10 constructor() { 11 super(); 12 this.attachShadow({ 13 mode: 'open' 14 }) 15 } 16 } 17 customElements.define('custom-element-0', CustomElement0) 18 o1 = document.createElement('input') 19 o2 = document.createElement('custom-element-0') 20 document.documentElement.appendChild(o2) 21 o2.shadowRoot.prepend('', undefined, o1, '', undefined, document.getElementById('id_3')) 22 } 23 document.addEventListener('DOMContentLoaded', start) 24 </script> 25 </head> 26 </html>