Bug 1731994: part 4) Declare more methods around `ContentPermissionRequestBase` ...
[gecko.git] / layout / reftests / invalidation / 543681-1.html
blob37aa85695596fe9cf5f237f802804d97c5d26b32
1 <html class="reftest-wait">
2 <head>
3 <script>
4 document.addEventListener("MozReftestInvalidate", doTest);
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 = "";
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>