1 <html xmlns=
"http://www.w3.org/1999/xhtml" class=
"reftest-wait">
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");
24 <body onload=
"setTimeout(boom, 30);">
26 <table id=
"table"><tr><td></td><td></td></tr></table>