| OLD | NEW |
| 1 [ | 1 [ |
| 2 Constructor(LengthValue length), | 2 Constructor(CSSLengthValue length), |
| 3 Constructor(CalcDictionary calcDictionary), | 3 Constructor(CalcDictionary calcDictionary), |
| 4 ImplementedAs=StyleCalcLength, | 4 ImplementedAs=CSSStyleCalcLength, |
| 5 RaisesException=Constructor, | 5 RaisesException=Constructor, |
| 6 RuntimeEnabled=CSSTypedOM | 6 RuntimeEnabled=CSSTypedOM |
| 7 ] interface CalcLength : LengthValue { | 7 ] interface CSSCalcLength : CSSLengthValue { |
| 8 readonly attribute double? px; | 8 readonly attribute double? px; |
| 9 readonly attribute double? percent; | 9 readonly attribute double? percent; |
| 10 readonly attribute double? em; | 10 readonly attribute double? em; |
| 11 readonly attribute double? ex; | 11 readonly attribute double? ex; |
| 12 readonly attribute double? ch; | 12 readonly attribute double? ch; |
| 13 readonly attribute double? rem; | 13 readonly attribute double? rem; |
| 14 readonly attribute double? vw; | 14 readonly attribute double? vw; |
| 15 readonly attribute double? vh; | 15 readonly attribute double? vh; |
| 16 readonly attribute double? vmin; | 16 readonly attribute double? vmin; |
| 17 readonly attribute double? vmax; | 17 readonly attribute double? vmax; |
| 18 readonly attribute double? cm; | 18 readonly attribute double? cm; |
| 19 readonly attribute double? mm; | 19 readonly attribute double? mm; |
| 20 readonly attribute double? in; | 20 readonly attribute double? in; |
| 21 readonly attribute double? pc; | 21 readonly attribute double? pc; |
| 22 readonly attribute double? pt; | 22 readonly attribute double? pt; |
| 23 }; | 23 }; |
| OLD | NEW |