blob: e54deb9247e2df33b6acd04b61f14acc4e072955 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
var table = document.createElement('table');
document.body.appendChild(table);
var colgroup = document.createElement('colgroup');
table.appendChild(colgroup);
var col = document.createElement('col');
colgroup.appendChild(col);
}
</script>
</head>
<body onload="boom();"></body>
</html>
|