2020-06-21 11:39:32 +02:00
|
|
|
interface Element : Node {
|
|
|
|
|
|
2020-06-21 12:01:13 +02:00
|
|
|
readonly attribute DOMString tagName;
|
|
|
|
|
|
2020-06-21 11:39:32 +02:00
|
|
|
DOMString? getAttribute(DOMString qualifiedName);
|
|
|
|
|
void setAttribute(DOMString qualifiedName, DOMString value);
|
|
|
|
|
|
2020-08-17 19:14:30 +01:00
|
|
|
Element? querySelector(DOMString selectors);
|
|
|
|
|
ArrayFromVector querySelectorAll(DOMString selectors);
|
|
|
|
|
|
2020-06-21 11:39:32 +02:00
|
|
|
attribute DOMString innerHTML;
|
2020-08-17 22:06:08 -04:00
|
|
|
attribute DOMString innerText;
|
2020-07-24 13:25:42 +02:00
|
|
|
[Reflect] attribute DOMString id;
|
|
|
|
|
[Reflect=class] attribute DOMString className;
|
2020-08-03 20:32:06 +02:00
|
|
|
|
|
|
|
|
readonly attribute Element? nextElementSibling;
|
|
|
|
|
readonly attribute Element? previousElementSibling;
|
2020-06-21 11:39:32 +02:00
|
|
|
}
|
|
|
|
|
|