summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/DocumentFragment.idl
blob: 10e66132f3709dfda338f9e5a9c7f3d5d1994659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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
interface DocumentFragment : Node {
    constructor();

    Element? getElementById(DOMString id);
};

DocumentFragment includes ParentNode;