307979-1.html (376B)
1 <html class="reftest-wait"> 2 <head> 3 4 <title>Crash testcase</title> 5 6 <script> 7 8 function foo() 9 { 10 document.body.appendChild(document.createElement('frameset')); 11 setTimeout(bar, 30); 12 } 13 14 function bar() 15 { 16 document.body.style.display = '-moz-box'; 17 document.documentElement.removeAttribute("class"); 18 } 19 20 </script> 21 22 </head> 23 24 <body onload="setTimeout(foo, 30);"> 25 26 </body> 27 </html>