summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/retained-dl-style-change-stacking-context-3.html
blob: a3c800862f848a5176b12951b3a90832a05ae6b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html class="reftest-wait">
<head>
<style>
  body {
    margin: 0px;
  }
  div {
    width:100px;
    height:100px;
    display: inline-block;
    position:absolute;
  }
</style>
</head>
<body>
  <div style="position:fixed;" class="reftest-display-list">
    <div style="background-color:green;" class="reftest-no-display-list"></div>
  </div>
  <div id="second" style="background-color:red; top: 110px;"></div>
</body>
<script>
function doTest() {
  document.getElementById("second").style.backgroundColor = "green";
  document.documentElement.removeAttribute("class");
}

window.addEventListener("MozReftestInvalidate", doTest);
</script>
</html>