mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 15:19:16 +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;
|
|
};
|