summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-anonymous-boxes/368932-1.html
blob: fae4fd1fdb9733965f0617a7b694e96690409a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript">
    function doTest() {
      for (var i = 0; i < 10; ++i) {
        // clear target element's content
        document.getElementById("target-table").innerHTML = "";
        // clone and append new row
        cloned_row = document.getElementById("row-template").cloneNode(true);
        document.getElementById("target-table").appendChild(cloned_row);
        document.body.offsetWidth;
      }
    }
    </script>
</head>
<body onload="doTest()">
    <table><tr id="row-template"><td>cloning material</td></tr></table>
    <table id="target-table"><tr><td>target table</td></tr></table>
</body>
</html>