mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
10 lines
311 B
Plaintext
10 lines
311 B
Plaintext
#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;
|
|
};
|