mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	
		
			
	
	
		
			14 lines
		
	
	
	
		
			495 B
		
	
	
	
		
			Text
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
	
		
			495 B
		
	
	
	
		
			Text
		
	
	
	
	
	
|   | #import <CSS/CSSNumericValue.idl> | ||
|  | #import <CSS/CSSTransformComponent.idl> | ||
|  | 
 | ||
|  | // https://drafts.css-houdini.org/css-typed-om-1/#cssrotate | ||
|  | [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)] | ||
|  | interface CSSRotate : CSSTransformComponent { | ||
|  |     constructor(CSSNumericValue angle); | ||
|  |     constructor(CSSNumberish x, CSSNumberish y, CSSNumberish z, CSSNumericValue angle); | ||
|  |     attribute CSSNumberish x; | ||
|  |     attribute CSSNumberish y; | ||
|  |     attribute CSSNumberish z; | ||
|  |     attribute CSSNumericValue angle; | ||
|  | }; |