| OLD | NEW |
| 1 // https://drafts.css-houdini.org/css-typed-om-1/#anglevalue-objects | 1 // https://drafts.css-houdini.org/css-typed-om-1/#anglevalue-objects |
| 2 | 2 |
| 3 enum CSSAngleUnit { | 3 enum CSSAngleUnit { |
| 4 "deg", "rad", "grad", "turn" | 4 "deg", "rad", "grad", "turn" |
| 5 }; | 5 }; |
| 6 | 6 |
| 7 [ | 7 [ |
| 8 Constructor(double value, CSSAngleUnit unit), | 8 Constructor(double value, CSSAngleUnit unit), |
| 9 Exposed=(Window,PaintWorklet), | 9 Exposed=(Window,PaintWorklet), |
| 10 RuntimeEnabled=CSSTypedOM, | 10 RuntimeEnabled=CSSTypedOM |
| 11 RaisesException=Constructor | |
| 12 ] interface CSSAngleValue : CSSStyleValue { | 11 ] interface CSSAngleValue : CSSStyleValue { |
| 13 readonly attribute double degrees; | 12 readonly attribute double degrees; |
| 14 readonly attribute double radians; | 13 readonly attribute double radians; |
| 15 readonly attribute double gradians; | 14 readonly attribute double gradians; |
| 16 readonly attribute double turns; | 15 readonly attribute double turns; |
| 17 }; | 16 }; |
| OLD | NEW |