-1:000000000000 | 0:3fddebd29dc1 |
---|---|
1 <html class="reftest-wait"> | |
2 <head> | |
3 <script> | |
4 | |
5 function boom() | |
6 { | |
7 document.getElementById("ta").style.overflow = "scroll"; | |
8 setTimeout(boom2, 12); | |
9 } | |
10 | |
11 function boom2() | |
12 { | |
13 document.getElementById("ta").style.overflow = ""; | |
14 setTimeout(boom, 12); | |
15 } | |
16 | |
17 function cont() | |
18 { | |
19 document.documentElement.removeAttribute("class"); | |
20 } | |
21 </script> | |
22 </head> | |
23 | |
24 <body onload="boom(); setTimeout(cont, 800);"> | |
25 | |
26 <textarea id="ta">x</textarea> | |
27 | |
28 </body> | |
29 </html> |