mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 01:08:48 +00:00
I initially had it in Node just because, but then saw it was part of ParentNode in the spec.
13 lines
411 B
Text
13 lines
411 B
Text
interface DocumentFragment : Node {
|
|
|
|
Element? getElementById(DOMString id);
|
|
|
|
// FIXME: These should all come from a ParentNode mixin
|
|
readonly attribute Element? firstElementChild;
|
|
readonly attribute Element? lastElementChild;
|
|
readonly attribute unsigned long childElementCount;
|
|
|
|
Element? querySelector(DOMString selectors);
|
|
ArrayFromVector querySelectorAll(DOMString selectors);
|
|
|
|
};
|