Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<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>