391974-1-inner.xhtml (504B)
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 2 <menuitem> 3 <tooltip/> 4 <box/> 5 </menuitem> 6 7 <script xmlns="http://www.w3.org/1999/xhtml"> 8 function doe2() { 9 document.getElementsByTagName('menuitem')[0].setAttribute('description', 'tetx'); 10 } 11 12 function doe3() { 13 document.getElementsByTagName('menuitem')[0].removeAttribute('description'); 14 document.getElementsByTagName('tooltip')[0].setAttribute('ordinal', '0'); 15 } 16 setTimeout(doe2,150); 17 setTimeout(doe3,200); 18 </script> 19 </window>