Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
michael@0 | 2 | <menuitem> |
michael@0 | 3 | <tooltip/> |
michael@0 | 4 | <box/> |
michael@0 | 5 | </menuitem> |
michael@0 | 6 | |
michael@0 | 7 | <script xmlns="http://www.w3.org/1999/xhtml"> |
michael@0 | 8 | function doe2() { |
michael@0 | 9 | document.getElementsByTagName('menuitem')[0].setAttribute('description', 'tetx'); |
michael@0 | 10 | } |
michael@0 | 11 | |
michael@0 | 12 | function doe3() { |
michael@0 | 13 | document.getElementsByTagName('menuitem')[0].removeAttribute('description'); |
michael@0 | 14 | document.getElementsByTagName('tooltip')[0].setAttribute('ordinal', '0'); |
michael@0 | 15 | } |
michael@0 | 16 | setTimeout(doe2,150); |
michael@0 | 17 | setTimeout(doe3,200); |
michael@0 | 18 | </script> |
michael@0 | 19 | </window> |