mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 06:32:44 +00:00 
			
		
		
		
	 fb8edcea00
			
		
	
	
		fb8edcea00
		
	
	
	
	
		
			
			Adds the initial implementation for interfaces defined in the ResizeObserver specification. These interfaces will be used to construct and send observation events in the upcoming changes.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			226 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| // https://drafts.csswg.org/resize-observer-1/#resizeobserversize
 | |
| [Exposed=Window]
 | |
| interface ResizeObserverSize {
 | |
|     readonly attribute unrestricted double inlineSize;
 | |
|     readonly attribute unrestricted double blockSize;
 | |
| };
 |