8 lines
279 B
Text
8 lines
279 B
Text
|
|
// 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;
|
||
|
|
};
|