Bug 1881621 - Add colors/color_canvas.html tests to dom/canvas/test/reftest. r=bradwerth
[gecko.git] / layout / tables / crashtests / 110523-1.html
blob1444949606de60e0a0681a56821f9c41780addbb
1 <html>
2 <head>
3 <title></title>
4 <script type="text/javascript">
5 function toggle(b) {
6 var adv = document.getElementById("it_guru");
7 var ns = 'none';
8 if (b) {
9 ns= "table-row";
11 adv.style.display = ns;
13 function boom()
15 toggle(true);
16 document.documentElement.offsetHeight;
17 toggle(false);
18 document.documentElement.offsetHeight;
19 toggle(true);
20 document.documentElement.offsetHeight;
21 toggle(false);
22 document.documentElement.offsetHeight;
24 </script></head><body onload="boom();">
25 <form action="http://localhost/">
26 <table>
27 <tbody>
28 <tr>
29 <td>Without the &lt;tbody&gt; tags Mozilla doesn't crash
30 </td>
31 </tr>
32 </tbody>
33 <tr id="it_guru">
34 <td>I disappear
35 </td>
36 </tr>
37 <tr>
38 <td>Without this row Mozilla doesn't crash
39 </td>
40 </tr>
41 </table>
42 </form>
43 </body>
44 </html>