1<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2
3<head>
4<script>
5
6function boom()
7{
8  var HTML_NS = "http://www.w3.org/1999/xhtml";
9  document.getElementById("www").appendChild(document.createTextNode('עִבְרִית'));
10  document.getElementById("yyy").appendChild(document.createElementNS(HTML_NS, 'div'));
11  document.documentElement.removeAttribute("class")
12}
13
14</script>
15</head>
16
17<body onload="setTimeout(boom, 30);" style="width: 20em;">
18
19<p>This page should not trigger assertions.</p>
20
21  <table border="1">
22    <tbody>
23      <tr>
24        <td>Foo bar baz zap</td>
25        <td>
26          <table width="100%" height="100%" border="1">
27            <tbody>
28              <tr>
29                <td>
30                <table border="1">
31                  <tbody>
32                    <tr>
33                      <td><span id="www">This text wraps</span></td>
34                      <td>Foo</td>
35                    </tr>
36                  </tbody>
37                </table>
38                <div id="yyy">YYY</div>
39                </td>
40              </tr>
41            </tbody>
42          </table>
43        </td>
44      </tr>
45    </tbody>
46  </table>
47
48</body>
49
50</html>