Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / tables / crashtests / 370876-1.html
blobe01e92e60e65f381c85a636da3282751ecd570d3
1 <html class="reftest-wait">
2 <head>
3 <script>
5 function boom()
7 var a = document.getElementById("a");
8 var b = document.getElementById("b");
9 var x = document.getElementById("x");
11 a.parentNode.insertBefore(x, a);
12 x.remove();
13 b.remove();
15 document.documentElement.removeAttribute("class");
18 </script>
19 </head>
22 <body onload="setTimeout(boom, 30);">
24 <table>
25 <tr>
26 <td id="x">X</td>
27 </tr>
28 </table>
30 <table border="1" style="border-collapse: collapse;">
31 <tr>
32 <td id="a">A</td>
33 </tr>
34 <tr>
35 <td id="b" colspan="2">B</td>
36 </tr>
37 </table>
39 </body>
41 </html>