mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:12:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			853 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			853 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Element.idl>
 | |
| #import <DOM/HTMLCollection.idl>
 | |
| #import <DOM/Node.idl>
 | |
| #import <DOM/NodeList.idl>
 | |
| 
 | |
| 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;
 | |
| 
 | |
|     [CEReactions, Unscopable] undefined prepend((Node or DOMString)... nodes);
 | |
|     [CEReactions, Unscopable] undefined append((Node or DOMString)... nodes);
 | |
|     [CEReactions, Unscopable] undefined replaceChildren((Node or DOMString)... nodes);
 | |
| 
 | |
|     Element? querySelector(DOMString selectors);
 | |
|     [NewObject] NodeList querySelectorAll(DOMString selectors);
 | |
| 
 | |
|     [SameObject] readonly attribute HTMLCollection children;
 | |
| 
 | |
| };
 | 
