ladybird/Libraries/LibWeb/CSS/CSSMathNegate.idl

10 lines
311 B
Text
Raw Normal View History

2025-08-19 16:03:09 +01:00
#import <CSS/CSSMathValue.idl>
#import <CSS/CSSNumericValue.idl>
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathnegate
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSMathNegate : CSSMathValue {
constructor(CSSNumberish arg);
readonly attribute CSSNumericValue value;
};