I am using something like
win.gBrowser.mTabContainer.childNodes[i]
in my extension, what I would like to do is to display the names of the tabs I am finding
I can't figure out how to do this.
When working with regular HTML, I can do a console.info("",myElement) and then peek inside and see all the properties of the element to find what I want.
I can't do this with chrome stuff. All I get in the console is a reference that the object is a XUL object.
Can someone tell me what property would tell me the name of the page that's in a particular tab, or better yet, how can I examine details about a variable that is in chrome code?
Components.utils.reportError(myElement) shows no extra info. Dump is not working at all for me. And ChromeBug doesn't seem to work on OS X
Thanks.
