-1:000000000000 | 0:89f5a8637de7 |
---|---|
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-groupbox'; | |
17 document.documentElement.removeAttribute("class"); | |
18 } | |
19 | |
20 </script> | |
21 | |
22 </head> | |
23 | |
24 <body onload="setTimeout(foo, 30);"> | |
25 | |
26 </body> | |
27 </html> |