Backed out changeset 496886cb30a5 (bug 1867152) for bc failures on browser_user_input...
[gecko.git] / layout / tables / crashtests / 341227-1.xhtml
blobbca62eefaf58b06b345a480f70800a857b5c4816
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
3 <head>
4 <script>
6 function boom()
8 var table = document.getElementById('table');
10 var newTR = document.createElement('tr');
11 var newTD = document.createElement('td');
12 newTR.appendChild(newTD);
13 table.appendChild(newTR);
15 newTD.setAttribute('rowspan', 3);
17 document.documentElement.removeAttribute("class");
20 </script>
21 </head>
24 <body onload="setTimeout(boom, 30);">
26 <table id="table"><tr><td></td><td></td></tr></table>
28 </body>
30 </html>