Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / tables / crashtests / 367673-1.xhtml
blobe7fb6493e3723a70b37a878d7d3ebbce8ff1a216
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2 <head>
3 <script>
5 function boom()
7 document.getElementById("wantstobeatable").style.display = "table";
8 document.documentElement.removeAttribute("class");
11 </script>
12 </head>
14 <body onload="setTimeout(boom, 30)">
16 <table width="100%" border="1">
17 <tr>
18 <td>
19 <table border="1" width="100%" style="table-layout: fixed;">
20 <tr>
21 <td>Foo</td>
22 </tr>
23 </table>
24 </td>
25 <td width="22">Bar</td>
26 <td id="wantstobeatable">
27 <table border="1" style="table-layout: fixed;">
28 <tr>
29 <td>Baz</td>
30 </tr>
31 </table>
32 </td>
33 </tr>
34 </table>
36 </body>
38 </html>