summaryrefslogtreecommitdiffstats
path: root/layout/reftests/position-relative/1115999-1.html
blob: 99ff98c5fa74dbfdfc104032f5f98e058f66530c (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
<!DOCTYPE HTML>
<title>Testcase, bug 1115999</title>
<style>
html { overflow: hidden }
html, body { margin: 0; border: 0; }
table, tr, td { border: none; margin: 0; padding: 0; border-spacing: 0 }
</style>

<table>
  <tr>
    <td>o</td>
    <td style="position: relative">two</td>
  </tr>
</table>
<script>

document.body.offsetHeight;

var row = document.getElementsByTagName("tr")[0];
var cell = row.firstElementChild;
cell.textContent = "one";

document.body.offsetHeight;

// Force a call to nsTableFrame::SetGeometryDirty.
row.appendChild(document.createElement("td"));

</script>