mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 12:44:58 +00:00
17 lines
493 B
Text
17 lines
493 B
Text
interface DocumentFragment : Node {
|
|
|
|
constructor();
|
|
|
|
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);
|
|
|
|
[SameObject] readonly attribute HTMLCollection children;
|
|
|
|
};
|