mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
24 lines
525 B
Plaintext
24 lines
525 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();">
|
||
|
|
||
|
<bindings xmlns="http://www.mozilla.org/xbl">
|
||
|
<binding id="empty"><content></content></binding>
|
||
|
</bindings>
|
||
|
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var menupopup = document.getElementById("menupopup");
|
||
|
var x = document.getAnonymousNodes(menupopup)[0];
|
||
|
menupopup.style.MozBinding = "url('#empty')";
|
||
|
for (var ppp in x) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<menupopup id="menupopup"/>
|
||
|
|
||
|
</window>
|