ladybird/Libraries/LibWeb/CSS/CSSMathMin.idl

10 lines
310 B
Text
Raw Normal View History

2025-08-19 17:07:05 +01:00
#import <CSS/CSSMathValue.idl>
#import <CSS/CSSNumericArray.idl>
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathmin
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSMathMin : CSSMathValue {
constructor(CSSNumberish... args);
readonly attribute CSSNumericArray values;
};