mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:15:08 +00:00
17 lines
498 B
Text
17 lines
498 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);
|
|
[NewObject] NodeList querySelectorAll(DOMString selectors);
|
|
|
|
[SameObject] readonly attribute HTMLCollection children;
|
|
|
|
};
|