mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:32:44 +00:00 
			
		
		
		
	 d4b2eb22e1
			
		
	
	
		d4b2eb22e1
		
	
	
	
	
		
			
			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;
 |