1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/invalidation/543681-1-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<html class="reftest-wait"> 1.5 +<head> 1.6 +<script> 1.7 +document.addEventListener("MozReftestInvalidate", doTest, false); 1.8 + 1.9 +function doTest() { 1.10 + window.location.href = "#two"; 1.11 + document.documentElement.className = ""; 1.12 +} 1.13 +</script> 1.14 +</head> 1.15 +<body> 1.16 +<div style="height: 200px;">spacer</div> 1.17 +<div id="one" style="background: blue; width: 200px; height: 200px; display: none;">div one</div> 1.18 +<div id="two" style="background: red; width: 200px; height: 200px;">div two</div> 1.19 +<div style="height: 10000px;">spacer</div> 1.20 +</body> 1.21 +</html>