|
1 <html class="reftest-wait"> |
|
2 <head> |
|
3 <style type="text/css"> |
|
4 |
|
5 .a:first-letter { float: right; } |
|
6 |
|
7 </style> |
|
8 <script type="text/javascript"> |
|
9 |
|
10 function boom() |
|
11 { |
|
12 document.body.style.overflow = "auto"; |
|
13 document.body.className = "a"; |
|
14 |
|
15 setTimeout(boom2, 30); |
|
16 } |
|
17 |
|
18 function boom2() |
|
19 { |
|
20 var span = document.createElement("span"); |
|
21 document.body.appendChild(span); |
|
22 |
|
23 document.documentElement.removeAttribute("class"); |
|
24 } |
|
25 |
|
26 </script> |
|
27 </head> |
|
28 |
|
29 <body onload="boom();">ﺷ |
|
30 </body> |
|
31 |
|
32 </html> |