543681-1-ref.html 515 B

12345678910111213141516171819
  1. <html class="reftest-wait">
  2. <head>
  3. <script>
  4. document.addEventListener("MozReftestInvalidate", doTest, false);
  5. function doTest() {
  6. window.location.href = "#two";
  7. document.documentElement.className = "";
  8. }
  9. </script>
  10. </head>
  11. <body>
  12. <div style="height: 200px;">spacer</div>
  13. <div id="one" style="background: blue; width: 200px; height: 200px; display: none;">div one</div>
  14. <div id="two" style="background: red; width: 200px; height: 200px;">div two</div>
  15. <div style="height: 10000px;">spacer</div>
  16. </body>
  17. </html>