summaryrefslogtreecommitdiffstats
path: root/layout/reftests/table-anonymous-boxes/394402-1b.html
blob: ef6407eb0a86e5c256dbece07002b6e97ccb163f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html class="reftest-wait">
  <head>
    <style>
      body { font-family: sans-serif; }
    </style>
    <script>
      function runTest() {
        document.getElementById('r').appendChild(document.createTextNode('x'));
        document.getElementById('r').appendChild(document.createTextNode('x'));
        document.getElementById('r').appendChild(document.createTextNode('x'));
        document.body.normalize();
        document.documentElement.className = "";
      }
    </script>
  </head>
<body onload="runTest()">

<table border=1 id="t"><tbody><tr id="r"><td id="c">TD</td></tr></tbody></table>

</body>
</html>