blob: 66854e5543c854d08201eacf5f67df9bd3a3d3b7 (
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
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boo()
{
document.getElementById("td46").setAttribute("rowspan", 3);
document.getElementById("tbody6").appendChild(document.createTextNode('X'));
}
window.addEventListener("load", boo, false);
</script>
</head>
<body>
<table border="1">
<tbody id="tbody6">
<tr id="tr7">
<td>A</td>
<td>B</td>
Y
</tr>
<tr>
<td>C</td>
<td id="td46">D</td>
</tr>
</tbody>
</table>
</body>
</html>
|