mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
17 lines
413 B
Plaintext
17 lines
413 B
Plaintext
#import <DOM/Element.idl>
|
|
#import <DOM/HTMLCollection.idl>
|
|
#import <DOM/Node.idl>
|
|
#import <DOM/NodeList.idl>
|
|
#import <DOM/ParentNode.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#documentfragment
|
|
[Exposed=Window]
|
|
interface DocumentFragment : Node {
|
|
constructor();
|
|
|
|
// https://dom.spec.whatwg.org/#interface-nonelementparentnode
|
|
Element? getElementById(DOMString id);
|
|
};
|
|
|
|
DocumentFragment includes ParentNode;
|