Bug 1881621 - Add colors/color_canvas.html tests to dom/canvas/test/reftest. r=bradwerth
[gecko.git] / layout / tables / crashtests / 371290.html
blobbd9147876ebdfb7bf26fd10dc80f2aa6f6192542
1 <html class="reftest-wait">
2 <head>
3 <title>BC crash</title>
4 <script>
5 function doit() {
6 var C = document.getElementById('C');
7 var newNode = document.createElement('td');
8 newNode.setAttribute('id', 'D');
9 C.insertBefore(newNode, document.getElementById('B'));
10 var D = document.getElementById('D');
11 D.remove();
12 var A = document.getElementById('A');
13 A.remove();
14 document.documentElement.removeAttribute("class");
16 </script>
17 </head>
20 <body onload="doit()">
21 <table style="border-collapse: collapse">
22 <tbody>
23 <tr id="C">
24 <th id="B"></th>
25 </tr>
26 <tr>
27 <td id="A" colspan="2"></th>
28 </tr>
29 <tbody><tr><th></th></tr></tbody>
31 </table>
32 </body>
33 </html>