mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-04 07:10:57 +00:00 
			
		
		
		
	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;
 | 
						|
};
 |