blob: 3830e148d6641bf8cbccacf700c5c2e3e31e6243 (
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" xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<xul:deck id="d"/>
<xul:menuitem><span /><xul:menupopup id="p"/></xul:menuitem>
<script>
function boom()
{
var p = document.getElementById("p");
var d = document.getElementById("d");
p.parentNode.removeChild(p);
d.appendChild(document.createElementNS("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul", "box"));
}
window.addEventListener("load", boom, false);
</script>
</html>
|