543681-1.html 659 B

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