|
1 <html class="reftest-wait"> |
|
2 <head> |
|
3 <script type="text/javascript"> |
|
4 |
|
5 var iterations = 0; |
|
6 var start = new Date(); |
|
7 |
|
8 function boom() |
|
9 { |
|
10 document.getElementById("i").style.overflow = "scroll"; |
|
11 document.getElementById("i").src = document.getElementById("i").src; |
|
12 setTimeout(boom2, 10); // must be a short timeout |
|
13 } |
|
14 |
|
15 function boom2() |
|
16 { |
|
17 document.getElementById("i").style.overflow = ""; |
|
18 var now = new Date(); |
|
19 if (++iterations < 20 && now - start < 5000) |
|
20 setTimeout(boom, 10); |
|
21 else |
|
22 document.documentElement.removeAttribute("class"); |
|
23 } |
|
24 |
|
25 </script> |
|
26 </head> |
|
27 |
|
28 <body onload="boom();"><iframe id="i" src="458637-1-inner.xhtml" style="visibility: collapse;"></iframe></body> |
|
29 </html> |