gecko-dev/dom/tools/Test.idl

20 lines
478 B
Plaintext
Raw Normal View History

1998-06-03 23:36:47 +00:00
interface Test : Node {
attribute Element element;
attribute long type;
readonly attribute boolean hasChildren;
attribute wstring name;
Element getChild(in Node foo, in long index);
long createChildren(in wstring ids, in boolean new);
boolean isNew();
wstring rename(in wstring newName);
wstring setTimeout(in wstring expr /* ... */);
1998-06-03 23:36:47 +00:00
};
interface Test2 {
readonly attribute Node me;
attribute boolean foo;
Document getMyDocument(/* ... */);
1998-06-03 23:36:47 +00:00
};