mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:32:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			498 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 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;
 | |
| 
 | |
|     Element? querySelector(DOMString selectors);
 | |
|     [NewObject] NodeList querySelectorAll(DOMString selectors);
 | |
| 
 | |
|     [SameObject] readonly attribute HTMLCollection children;
 | |
| 
 | |
| };
 | 
