
These circular imports led to the generator silently failing to generate the required methods/properties.
14 lines
329 B
Text
14 lines
329 B
Text
#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;
|