Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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> |