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