Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <html class="reftest-wait">
2 <head>
3 <script>
4 document.addEventListener("MozReftestInvalidate", doTest, false);
6 function doTest() {
7 window.location.href = "#two";
8 document.documentElement.className = "";
9 }
10 </script>
11 </head>
12 <body>
13 <div style="height: 200px;">spacer</div>
14 <div id="one" style="background: blue; width: 200px; height: 200px; display: none;">div one</div>
15 <div id="two" style="background: red; width: 200px; height: 200px;">div two</div>
16 <div style="height: 10000px;">spacer</div>
17 </body>
18 </html>