blob: 8dcfe6e1982539b60a20c7a1d62c566bf0f84c5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html class="reftest-wait">
<head>
<script>
function boom()
{
var n = document.getElementById("editMe");
n.firstChild.remove();
document.documentElement.className = "";
}
</script>
</head>
<body onload="boom();">
<span id="editMe" style="margin-bottom: 1px;">a</span>
<div>b</div>
</body>
</html>
|