mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:22:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			470 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			470 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Node.idl>
 | |
| #import <DOM/NodeFilter.idl>
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#interface-nodeiterator
 | |
| [Exposed=Window]
 | |
| interface NodeIterator {
 | |
| 
 | |
|     [SameObject] readonly attribute Node root;
 | |
|     readonly attribute Node referenceNode;
 | |
|     readonly attribute boolean pointerBeforeReferenceNode;
 | |
|     readonly attribute unsigned long whatToShow;
 | |
|     readonly attribute NodeFilter? filter;
 | |
| 
 | |
|     Node? nextNode();
 | |
|     Node? previousNode();
 | |
| 
 | |
|     undefined detach();
 | |
| 
 | |
| };
 | 
