Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
2 <menuitem>
3 <tooltip/>
4 <box/>
5 </menuitem>
7 <script xmlns="http://www.w3.org/1999/xhtml">
8 function doe2() {
9 document.getElementsByTagName('menuitem')[0].setAttribute('description', 'tetx');
10 }
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>