summaryrefslogtreecommitdiffstats
path: root/layout/reftests/display-list/retained-dl-frame-created-1.html
blob: 92b96da2936b042afc64f3e9f3bef81f5653fe45 (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
<html class="reftest-wait">
<head>
<style>
  div {
    width:10px;
    height:10px;
    background-color:green;
    display: inline-block;
  }
</style>
</head>
<body id="body">
  <div id="first" class="reftest-no-display-list"></div>
</body>
<script>
function doTest() {
  var div = document.createElement("div");
  var prev = document.getElementById("first");
  prev.parentNode.insertBefore(div, prev.nextSibling);
  document.documentElement.removeAttribute("class");
}

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