I've been playing around with buttons in xul. And I discovered that when you put an image on a button it creates an image element inside that button, I know this, because I can style that image with the css selector 'button image'.

So my question is what other implicit elements are there and is there a list somewhere that is hiding from me, because I want to have a white menu arrow and I can't work out what its called.

link|improve this question

65% accept rate
feedback

1 Answer

up vote 2 down vote accepted

They are called "anonymous nodes" and you can see them in DOM Inspector for example. If you prefer to inspect them programmatically, document.getAnonymousNodes() or document.getAnonymousElementByAttribute() will give you them ("normal" DOM methods won't, they ignore anonymous nodes). Anonymous nodes are usually created via XBL, e.g. the default XBL bindings for buttons can be found in chrome://global/content/bindings/button.xml (anonymous nodes are defined in the <content> tag). In Firefox 5 this corresponds to the directory chrome/toolkit/content/global/bindings/ in omni.jar - feel free to browse around in this directory (the bindings are assigned in chrome/toolkit/content/global/xul.css). When styling anonymous nodes keep in mind that the anonymous nodes will sometimes depend on the operating system (see <dialog> binding for an example, note the preprocessor directives choosing code parts based on operating system).

link|improve this answer
Thanks heaps Wladimir, this has been so helpful! – cybermotron Jul 2 '11 at 5:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.