Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function init()
{
var A = document.getElementById("z");
var B = A.nextSibling;
var C = B.nextSibling;
var P = A.parentNode;
document.addEventListener("DOMNodeRemoved", fizzy, false);
P.removeChild(B);
document.removeEventListener("DOMNodeRemoved", fizzy, false);
function fizzy()
{
document.removeEventListener("DOMNodeRemoved", fizzy, false); // avoid recursion
P.removeChild(A);
}
document.documentElement.appendChild(C);
}
window.addEventListener("load", init, false);
</script>
</head>
<body>
<menupopup y="x">↩ <menuitem id="z"/>↩ <menuitem/>↩ <menuitem/>↩</menupopup>↩
</hbox>
</body>
</html>