ladybird/Libraries/LibWeb/CSS/CSSMathProduct.idl
Sam Atkins e21610180f LibWeb/CSS: Implement CSSMathProduct
This is almost identical to CSSMathSum.
2025-08-29 11:57:10 +02:00

9 lines
318 B
Text

#import <CSS/CSSMathValue.idl>
#import <CSS/CSSNumericArray.idl>
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathproduct
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSMathProduct : CSSMathValue {
constructor(CSSNumberish... args);
readonly attribute CSSNumericArray values;
};