mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 12:35:00 +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);
|
|
|
|
};
|