stress-2.html (378B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 5 <style> 6 #fl:first-line { } 7 </style> 8 9 <script> 10 function boom() 11 { 12 document.getElementById("s").style.overflow = "auto"; 13 document.body.offsetWidth; 14 document.documentElement.className = ""; 15 } 16 </script> 17 18 </head> 19 <body onload="setTimeout(boom, 300);"> 20 21 <div id="fl"> 22 <b><span id="s">Foo</span></b> 23 </div> 24 25 </body> 26 </html>