Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script type="text/javascript">
<![CDATA[
function boom()
{
var dE = document.documentElement;
var newSpan = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
document.addEventListener("DOMNodeRemoved", whee);
document.removeChild(dE);
document.removeEventListener("DOMNodeRemoved", whee);
function whee()
{
document.removeEventListener("DOMNodeRemoved", whee);
document.insertBefore(newSpan, dE);
}
}
window.addEventListener("load", boom);
]]>
</script>
</head>
<body>
<p>This text will disappear. There should be no assertions.</p>
</body>
</html>