mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 18:42:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| interface Range {
 | |
| 
 | |
|     constructor();
 | |
| 
 | |
|     readonly attribute Node startContainer;
 | |
|     readonly attribute unsigned long startOffset;
 | |
|     readonly attribute Node endContainer;
 | |
|     readonly attribute unsigned long endOffset;
 | |
| 
 | |
|     undefined setStart(Node node, unsigned long offset);
 | |
|     undefined setEnd(Node node, unsigned long offset);
 | |
| 
 | |
|     Range cloneRange();
 | |
| 
 | |
| };
 | 
