Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / tables / crashtests / 366556-1.xhtml
blob16a5a7745d600d0318e4336a548a1929cd3fc49c
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
3 <head>
4 <script>
6 function boom()
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")
14 </script>
15 </head>
17 <body onload="setTimeout(boom, 30);" style="width: 20em;">
19 <p>This page should not trigger assertions.</p>
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>
48 </body>
50 </html>