summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/389224-2.html
blob: 354b9a9138534ac7c5a92be1687c1633ce7fe893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE HTML>
<html class="reftest-wait">
<body>
<div id="d" style="position:absolute; left:10px; top:10px; width:10px; height:10px;">
  <div style="width:100px; height:100px; background:lime;"></div>
</div>
<script>
var d = document.getElementById("d");
function doTest() {
  d.style.clip = "rect(0,0,0,0)";
  document.documentElement.removeAttribute("class");
}
window.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>