blob: f586296c5d469fede8d1242f9373f2a17cc92b9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
interface Element : Node {
readonly attribute DOMString tagName;
DOMString? getAttribute(DOMString qualifiedName);
void setAttribute(DOMString qualifiedName, DOMString value);
attribute DOMString innerHTML;
[Reflect] attribute DOMString id;
[Reflect=class] attribute DOMString className;
readonly attribute Element? nextElementSibling;
readonly attribute Element? previousElementSibling;
}
|