summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/1453541-2.html
blob: 897945fec09ec346baa057c259b1caf398eb4f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html class="reftest-wait">
<body>

<div id="empty" style="position:relative; z-index: 4; left:192px; top:192px; width: 0px">
  <div style="position:fixed; width:400px; height: 400px; background-color:green; top: 200px; left: 200px"></div>
</div>
<div style="width:400px; height: 400px; background-color:blue"></div>

<script>
  function doTest() {
    document.getElementById("empty").style.left = "193px";
    document.documentElement.removeAttribute("class");
  }
  document.addEventListener("MozReftestInvalidate", doTest);
</script>
</body>
</html>