summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/486052-2a.html
blob: bef0026a28f2a504562043c908a03e3243247014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
  <head>
    <script>
      function doTest() {
        var d = document.createElement("div");
        d.textContent = "Test";
        d.style.top = d.style.left = 0;
        d.style.position = "absolute";
        document.getElementById("t").appendChild(d);
      }
    </script>
  </head>
  <body onload="doTest()">
    <div style="position: relative; display: table-row-group;" id="t"></div>
  </body>
</html>