blob: 7ef6620c7b4c180f2cf68f9ca979e2705e61617b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
div, col { counter-reset: chicken; }
</style>
<script>
function boom()
{
var col = document.getElementById("col");
col.parentNode.removeChild(col);
}
</script>
</head>
<body onload="boom();">
<div><col id="col" span="2"></col></div>
</body>
</html>
|