322436-1.html (414B)
1 <html class="reftest-wait"> 2 3 <head> 4 5 6 7 <script> 8 9 function foo() 10 { 11 setTimeout(bar, 30); 12 } 13 14 function bar() 15 { 16 document.getElementById("TT").style.position = "absolute"; 17 document.documentElement.removeAttribute("class"); 18 } 19 20 </script> 21 22 </head> 23 24 <body onload="foo();"> 25 26 27 <div id="TT"><div style="position: fixed;"><div style="display: -moz-box;"><div style="float: left;"></div></div></div></div> 28 29 </body> 30 31 </html>