mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 21:30:58 +00:00 
			
		
		
		
	 177395155a
			
		
	
	
		177395155a
		
	
	
	
	
		
			
			As the final CSSMathFoo class, this makes the serialization test finally run instead of crashing.
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			443 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <CSS/CSSMathValue.idl>
 | |
| #import <CSS/CSSNumericValue.idl>
 | |
| 
 | |
| // https://drafts.css-houdini.org/css-typed-om-1/#cssmathclamp
 | |
| [Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
 | |
| interface CSSMathClamp : CSSMathValue {
 | |
|     constructor(CSSNumberish lower, CSSNumberish value, CSSNumberish upper);
 | |
|     readonly attribute CSSNumericValue lower;
 | |
|     readonly attribute CSSNumericValue value;
 | |
|     readonly attribute CSSNumericValue upper;
 | |
| };
 |