Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / layout / tables / crashtests / 343588-1.xhtml
blob66854e5543c854d08201eacf5f67df9bd3a3d3b7
1 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
4 <script>
6 function boo()
8 document.getElementById("td46").setAttribute("rowspan", 3);
9 document.getElementById("tbody6").appendChild(document.createTextNode('X'));
12 window.addEventListener("load", boo, false);
14 </script>
17 </head>
18 <body>
20 <table border="1">
21 <tbody id="tbody6">
22 <tr id="tr7">
23 <td>A</td>
24 <td>B</td>
26 </tr>
27 <tr>
28 <td>C</td>
29 <td id="td46">D</td>
30 </tr>
31 </tbody>
32 </table>
34 </body>
35 </html>