2020-06-20 22:09:38 +02:00
|
|
|
interface Node : EventTarget {
|
|
|
|
|
|
|
|
readonly attribute DOMString nodeName;
|
|
|
|
readonly attribute Node? firstChild;
|
|
|
|
readonly attribute Node? lastChild;
|
|
|
|
readonly attribute Node? previousSibling;
|
|
|
|
readonly attribute Node? nextSibling;
|
2020-06-20 22:26:54 +02:00
|
|
|
readonly attribute Node? parentNode;
|
|
|
|
readonly attribute Element? parentElement;
|
2020-08-17 12:36:00 -04:00
|
|
|
attribute DOMString textContent;
|
2020-06-20 22:09:38 +02:00
|
|
|
|
2020-06-21 01:00:58 +02:00
|
|
|
Node appendChild(Node node);
|
2020-06-21 16:45:21 +02:00
|
|
|
Node insertBefore(Node node, Node? child);
|
2021-01-28 08:57:37 +01:00
|
|
|
Node removeChild(Node child);
|
2020-12-09 21:26:42 +00:00
|
|
|
};
|
2020-06-20 22:09:38 +02:00
|
|
|
|