ladybird/Libraries/LibWeb/CSS/CSSUnitValue.idl

10 lines
314 B
Text
Raw Normal View History

2025-08-18 15:12:55 +01:00
#import <CSS/CSSNumericValue.idl>
// https://drafts.css-houdini.org/css-typed-om-1/#cssunitvalue
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSUnitValue : CSSNumericValue {
constructor(double value, USVString unit);
attribute double value;
readonly attribute USVString unit;
};