summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/753329-1.html
blob: 1421e5d5b635abbc7e444331fc1f40e1c8517e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html style="overflow:hidden" class="reftest-wait"
      reftest-displayport-w="800" reftest-displayport-h="2000">
<body>
<div id="x" style="position:absolute; width:400px; height:400px; background:red;">
You should not see any red
</div>
<script>
function doTest() {
  document.getElementById('x').style.visibility = 'hidden';
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>