mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
|
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||
|
|
||
|
<script>
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
var a = document.getElementById("a");
|
||
|
while (a.firstChild)
|
||
|
a.removeChild(a.firstChild);
|
||
|
}
|
||
|
|
||
|
window.addEventListener("load", boom, false);
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<menulist id="a" sizetopopup="pref"><menupopup/><menupopup/></menulist>
|
||
|
|
||
|
</window>
|