555462.html (529B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"><head> 3 <meta charset="utf-8"> 4 <title>Testcase for bug 555462</title> 5 <script> 6 function f1() { 7 window.frames[0].frameElement.removeAttribute("onload"); 8 window.frames[0].location.reload(); 9 setTimeout(f2,200); 10 } 11 function f2() { window.frames[0].location.reload(); setTimeout(done,400); } 12 function done() { document.documentElement.removeAttribute("class"); } 13 </script> 14 </head> 15 <body> 16 17 <iframe src="555462-iframe.html" onload="setTimeout(f1,100)"></iframe> 18 19 20 </body> 21 </html>