mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			307 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/Element.idl>
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#interface-htmlcollection
 | |
| [Exposed=Window, LegacyUnenumerableNamedProperties]
 | |
| interface HTMLCollection {
 | |
| 
 | |
|     readonly attribute unsigned long length;
 | |
|     getter Element? item(unsigned long index);
 | |
|     getter Element? namedItem(DOMString name);
 | |
| 
 | |
| };
 | 
