This commit is contained in:
vidur 1998-06-16 22:00:47 +00:00
Родитель a57f717690
Коммит e941853292
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,11 +1,11 @@
interface Element : Node {
wstring getTagName();
NodeIterator getAttributes();
wstring getAttribute(in name name);
wstring getAttribute(in wstring name);
void setAttribute(in string name,
in string value);
void removeAttribute(in wstring name);
Attribute getAttributeNode(in name name);
Attribute getAttributeNode(in wstring name);
void setAttributeNode(in Attribute newAttr);
void removeAttributeNode(in Attribute oldAttr);
void getElementsByTagName(in wstring tagname);