540760.xhtml (348B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 2 3 <script> 4 5 function boom() 6 { 7 var a = document.getElementById("a"); 8 while (a.firstChild) 9 a.removeChild(a.firstChild); 10 } 11 12 window.addEventListener("load", boom, false); 13 14 </script> 15 16 <menulist id="a" sizetopopup="pref"><menupopup/><menupopup/></menulist> 17 18 </window>