384373.html (606B)
1 <!DOCTYPE HTML> 2 <html class="reftest-wait"><head> 3 <meta charset="utf-8"> 4 <title>Testcase for bug 384373</title> 5 <script> 6 function reload() { 7 this.location.reload(); 8 } 9 // Run the test for 1 second 10 setTimeout(function() { 11 document.body.getBoundingClientRect(); 12 document.documentElement.removeChild(document.body); 13 document.documentElement.className = ""; 14 }, 2000); 15 </script> 16 </head> 17 <body onload="document.body.getBoundingClientRect()"> 18 19 <iframe src="384373-1.xhtml"></iframe> 20 <iframe onload="this.contentWindow.setTimeout(reload,500)" src="384373-2.xhtml"></iframe> 21 22 </body> 23 </html>