1281715.html (421B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <style> 6 html { 7 color: orange; 8 } 9 </style> 10 11 <script> 12 function boom() 13 { 14 document.documentElement.offsetHeight; 15 document.getElementById("hostW").attachShadow({ mode: "open" }).innerHTML = '<z></z>'; 16 document.getElementsByTagName("style")[0].remove(); 17 } 18 </script> 19 20 </head> 21 22 <body onload="boom();"><div style="display: contents;" id="hostW"></div></body> 23 24 </html>