OLD | NEW |
1 enum CSSAngleUnit { | 1 enum CSSAngleUnit { |
2 "deg", "rad", "grad", "turn" | 2 "deg", "rad", "grad", "turn" |
3 }; | 3 }; |
4 | 4 |
5 [ | 5 [ |
6 Constructor(double value, CSSAngleUnit unit), | 6 Constructor(double value, CSSAngleUnit unit), |
7 RuntimeEnabled=CSSTypedOM, | 7 RuntimeEnabled=CSSTypedOM, |
8 RaisesException=Constructor | 8 RaisesException=Constructor |
9 ] interface CSSAngleValue : StyleValue { | 9 ] interface CSSAngleValue : CSSStyleValue { |
10 readonly attribute double degrees; | 10 readonly attribute double degrees; |
11 readonly attribute double radians; | 11 readonly attribute double radians; |
12 readonly attribute double gradians; | 12 readonly attribute double gradians; |
13 readonly attribute double turns; | 13 readonly attribute double turns; |
14 }; | 14 }; |
OLD | NEW |