blob: 407d47c42f99288af98e0a3f2222ffa9e7a9c06e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>dom cellmap crash</title>
<script>
function doit()
{
var doc = window.document;
var t1= doc.getElementById('table1');
var tbA = doc.createElement('tbody');
t1.appendChild(tbA);
var trA = doc.createElement('tr');
var td = doc.createElement('td');
td.setAttribute('rowspan', 2);
trA.appendChild(td);
tbA.appendChild(trA);
var trB = doc.createElement('tr');
var tdB = doc.createElement('td');
tdB.setAttribute('rowspan', 2);
trB.appendChild(tdB);
tbA.appendChild(trB);
tdB.remove();
trA.remove();
trB.remove();
var tb = doc.createElement('tbody');
trB.appendChild(tdB);
tb.appendChild(trB);
t1.appendChild(tb);
}
</script>
</head>
<body onload="doit()">
<table id="table1"><tbody id="tbody1"><tr id="tr1"><td id="td1">x</td></tr></tbody></table>
</body>
</html>
|