summaryrefslogtreecommitdiffstats
path: root/layout/reftests/invalidation/table-repaint-d.html
blob: ed6832cb108cb2e74abd538eb646003d99d13805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait"><head>
<title>table-repaint-d</title>
<body>
<table id="x">
<tr>
  <td>aaa</td><td>bbb</td>
</tr>
</table>
<script>
  function foo() {
    var t = document.getElementById("x");
    var r = document.createElement("tr");
    var c = document.createElement("td");
    c.appendChild(document.createTextNode("longer text: above this, first cell should say 'aaa' while second says 'bbb'."));
    r.appendChild(c);
    t.tBodies[0].appendChild(r);
    document.documentElement.removeAttribute("class");
  }
document.addEventListener("MozReftestInvalidate", foo);
</script>
</body>
</html>