blob: 71a94d161f586f678977e9ecc17704f9ce560ff3 [file] [log] [blame]
enum CSSAngleUnit {
"deg", "rad", "grad", "turn"
};
[
Constructor(double value, CSSAngleUnit unit),
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM,
RaisesException=Constructor
] interface CSSAngleValue : CSSStyleValue {
readonly attribute double degrees;
readonly attribute double radians;
readonly attribute double gradians;
readonly attribute double turns;
};