816948-1.html (375B)
1 <html class="reftest-wait"> 2 <script> 3 function boom() { 4 var ifr = document.getElementById("ifr"); 5 ifr.style.display = "none"; 6 // flush layout 7 document.documentElement.offsetLeft; 8 ifr.style.display = "block"; 9 document.documentElement.removeAttribute("class"); 10 } 11 </script> 12 <body onload="boom();"> 13 <iframe id="ifr" src="816948-iframe.html"> 14 </iframe> 15 </body> 16 </html>