mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
24 lines
318 B
HTML
24 lines
318 B
HTML
<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>
|