blob: 4933e26c8bb252247b3e39798c9177f2a6b113c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html xmlns="http://www.w3.org/1999/xhtml">
<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;"><div id="s"><td style="float: left;"><div style="width: 100px; height: 100px;"></div>
</td></div></div></div>
</body>
</html>
|