mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			236 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| function test() {
 | |
|   var ids = {};
 | |
|   Array.prototype.forEach.call(
 | |
|     document.querySelectorAll("[id]"),
 | |
|     function (node) {
 | |
|       var id = node.id;
 | |
|       ok(!(id in ids), id + " should be unique");
 | |
|       ids[id] = null;
 | |
|     }
 | |
|   );
 | |
| }
 | 
