idl test file

This commit is contained in:
vidur 1998-06-03 23:36:47 +00:00
parent f804b9d80a
commit 0033dc7725

18
dom/tools/Test.idl Normal file
View File

@ -0,0 +1,18 @@
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);
};
interface Test2 {
readonly attribute Node me;
attribute boolean foo;
Document getMyDocument();
};