gecko-dev/dom/public/idl/xul/XULDocument.idl
alecf%netscape.com 714e7a48a9 expose the form controls in a XUL document in the "controls" DOM attribute
this will make prefs and wizards much faster
r=hyatt
2000-01-13 02:59:08 +00:00

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;
};