layout/tables/crashtests/341227-1.xhtml

branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
equal deleted inserted replaced
-1:000000000000 0:3c55b27a92ea
1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
2
3 <head>
4 <script>
5
6 function boom()
7 {
8 var table = document.getElementById('table');
9
10 var newTR = document.createElement('tr');
11 var newTD = document.createElement('td');
12 newTR.appendChild(newTD);
13 table.appendChild(newTR);
14
15 newTD.setAttribute('rowspan', 3);
16
17 document.documentElement.removeAttribute("class");
18 }
19
20 </script>
21 </head>
22
23
24 <body onload="setTimeout(boom, 30);">
25
26 <table id="table"><tr><td></td><td></td></tr></table>
27
28 </body>
29
30 </html>

mercurial