Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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>
17 <iframe src="555462-iframe.html" onload="setTimeout(f1,100)"></iframe>
20 </body>
21 </html>