mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
12 lines
331 B
Plaintext
12 lines
331 B
Plaintext
interface XULDocument : Document {
|
|
|
|
/* IID: { 0x17ddd8c0, 0xc5f8, 0x11d2, \
|
|
{ 0xa6, 0xae, 0x0, 0x10, 0x4b, 0xde, 0x60, 0x48 } } */
|
|
|
|
attribute Element popup;
|
|
readonly attribute XULFocusTracker focus;
|
|
|
|
Element getElementById(in DOMString id);
|
|
NodeList getElementsByAttribute(in DOMString name, in DOMString value);
|
|
};
|