Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function boom()
{
var s = document.getElementById("s");
s.parentNode.removeChild(s);
}
</script>
</head>
<body onload="boom();">
<div style="column-width: 23px;"><div style="padding: 5px;"><span id="s"><div style="float: left;"><div style="width: 100px; height: 100px;"></div></div></span></div></div>
</body>
</html>