403454.html (597B)
1 <html class="reftest-wait"> 2 <head> 3 4 <style> 5 6 .dddd:before { 7 content: "generated"; 8 } 9 10 </style> 11 12 <script> 13 14 function b() 15 { 16 document.getElementById("float").style.cssFloat = ""; 17 setTimeout(b2, 30); 18 } 19 20 // This is just for visual effect, to make the timing clear. 21 // It's not needed for the crash. 22 function b2() 23 { 24 document.body.style.background = "#eee"; 25 document.documentElement.removeAttribute("class"); 26 } 27 28 </script> 29 30 </head> 31 32 <body onload="document.body.offsetHeight; setTimeout(b, 0);"> 33 34 <span class="dddd"><div></div><span id="float" style="float: left"></span></span> 35 36 </body> 37 </html>