mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 13:02:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			404 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| [Exposed=(Window)]
 | |
| interface ResizeObserver {
 | |
| 
 | |
|     // FIXME: This should be a ResizeObserverCallback.
 | |
|     constructor(any callback);
 | |
|     undefined observe(Element target, optional ResizeObserverOptions options = {});
 | |
|     undefined unobserve(Element target);
 | |
|     undefined disconnect();
 | |
| 
 | |
| };
 | |
| 
 | |
| dictionary ResizeObserverOptions {
 | |
| 
 | |
|     // FIXME: This should be an enum.
 | |
|     DOMString box = "content-box";
 | |
| 
 | |
| };
 | 
