484400-1.html (473B)
1 <html class="reftest-wait"> 2 <head> 3 <style> 4 div::first-letter { color: red; font-size: 200%; background-color: blue; } 5 </style> 6 <script> 7 function boom() { 8 document.documentElement.offsetWidth; 9 var s = document.getElementById("s"); 10 s.remove(); 11 document.documentElement.offsetWidth; 12 document.documentElement.removeAttribute("class"); 13 } 14 </script> 15 </head> 16 <body onload="boom();"> 17 <div> 18 <span id="s" style="position: absolute;">abcdefh</span>T 19 </div> 20 </body>