mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
17 lines
732 B
Plaintext
17 lines
732 B
Plaintext
// https://dom.spec.whatwg.org/#parentnode
|
|
interface mixin ParentNode {
|
|
[SameObject] readonly attribute HTMLCollection children;
|
|
readonly attribute Element? firstElementChild;
|
|
readonly attribute Element? lastElementChild;
|
|
readonly attribute unsigned long childElementCount;
|
|
|
|
[CEReactions, Unscopable] undefined prepend((Node or Utf16DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined append((Node or Utf16DOMString)... nodes);
|
|
[CEReactions, Unscopable] undefined replaceChildren((Node or Utf16DOMString)... nodes);
|
|
|
|
[CEReactions] undefined moveBefore(Node node, Node? child);
|
|
|
|
Element? querySelector(DOMString selectors);
|
|
[NewObject] NodeList querySelectorAll(DOMString selectors);
|
|
};
|