Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>