1 <html xmlns=
"http://www.w3.org/1999/xhtml">
3 <title>dom cellmap crash
</title>
10 var doc
= window
.document
;
11 var t1
= doc
.getElementById('table1');
12 var tbA
= doc
.createElement('tbody');
14 var trA
= doc
.createElement('tr');
15 var td
= doc
.createElement('td');
16 td
.setAttribute('rowspan', 2);
19 var trB
= doc
.createElement('tr');
20 var tdB
= doc
.createElement('td');
21 tdB
.setAttribute('rowspan', 2);
27 var tb
= doc
.createElement('tbody');
36 <body onload=
"doit()">
38 <table id=
"table1"><tbody id=
"tbody1"><tr id=
"tr1"><td id=
"td1">x
</td></tr></tbody></table>