331690-1.html (588B)
1 <html class="reftest-wait"> 2 <head> 3 4 <style id="s"></style> 5 6 <script> 7 8 window.addEventListener("load", f1); 9 10 function f1() 11 { 12 document.getElementsByTagName('head')[0].style.display = "table-row-group"; 13 setTimeout(f2, 30); 14 } 15 16 function f2() 17 { 18 document.body.style.display = "table-caption"; 19 setTimeout(f3, 30); 20 } 21 22 function f3() 23 { 24 document.body.style.display = "table-column-group"; 25 document.getElementById('s').textContent += "body { }"; 26 document.documentElement.removeAttribute("class"); 27 } 28 29 </script> 30 31 </head> 32 33 <body> 34 35 <span style="position: absolute">f</span> 36 37 </body> 38 </html>