mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
714e7a48a9
this will make prefs and wizards much faster r=hyatt
17 lines
490 B
Plaintext
17 lines
490 B
Plaintext
interface XULDocument : Document {
|
|
|
|
/* IID: { 0x17ddd8c0, 0xc5f8, 0x11d2, \
|
|
{ 0xa6, 0xae, 0x0, 0x10, 0x4b, 0xde, 0x60, 0x48 } } */
|
|
|
|
attribute Node popupNode;
|
|
attribute Node tooltipNode;
|
|
|
|
readonly attribute XULCommandDispatcher commandDispatcher;
|
|
|
|
Element getElementById(in DOMString id);
|
|
NodeList getElementsByAttribute(in DOMString name, in DOMString value);
|
|
|
|
void persist(in DOMString id, in DOMString attr);
|
|
readonly attribute HTMLCollection controls;
|
|
};
|