| OLD | NEW |
| 1 | 1 |
| 2 class _CSSPrimitiveValueImpl extends _CSSValueImpl implements CSSPrimitiveValue
native "*CSSPrimitiveValue" { | 2 class _CSSPrimitiveValueImpl extends _CSSValueImpl implements CSSPrimitiveValue
native "*CSSPrimitiveValue" { |
| 3 | 3 |
| 4 static final int CSS_ATTR = 22; | 4 static final int CSS_ATTR = 22; |
| 5 | 5 |
| 6 static final int CSS_CM = 6; | 6 static final int CSS_CM = 6; |
| 7 | 7 |
| 8 static final int CSS_COUNTER = 23; | 8 static final int CSS_COUNTER = 23; |
| 9 | 9 |
| 10 static final int CSS_DEG = 11; | 10 static final int CSS_DEG = 11; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 static final int CSS_RGBCOLOR = 25; | 46 static final int CSS_RGBCOLOR = 25; |
| 47 | 47 |
| 48 static final int CSS_S = 15; | 48 static final int CSS_S = 15; |
| 49 | 49 |
| 50 static final int CSS_STRING = 19; | 50 static final int CSS_STRING = 19; |
| 51 | 51 |
| 52 static final int CSS_UNKNOWN = 0; | 52 static final int CSS_UNKNOWN = 0; |
| 53 | 53 |
| 54 static final int CSS_URI = 20; | 54 static final int CSS_URI = 20; |
| 55 | 55 |
| 56 static final int CSS_VH = 27; |
| 57 |
| 58 static final int CSS_VMIN = 28; |
| 59 |
| 60 static final int CSS_VW = 26; |
| 61 |
| 56 final int primitiveType; | 62 final int primitiveType; |
| 57 | 63 |
| 58 _CounterImpl getCounterValue() native; | 64 _CounterImpl getCounterValue() native; |
| 59 | 65 |
| 60 num getFloatValue(int unitType) native; | 66 num getFloatValue(int unitType) native; |
| 61 | 67 |
| 62 _RGBColorImpl getRGBColorValue() native; | 68 _RGBColorImpl getRGBColorValue() native; |
| 63 | 69 |
| 64 _RectImpl getRectValue() native; | 70 _RectImpl getRectValue() native; |
| 65 | 71 |
| 66 String getStringValue() native; | 72 String getStringValue() native; |
| 67 | 73 |
| 68 void setFloatValue(int unitType, num floatValue) native; | 74 void setFloatValue(int unitType, num floatValue) native; |
| 69 | 75 |
| 70 void setStringValue(int stringType, String stringValue) native; | 76 void setStringValue(int stringType, String stringValue) native; |
| 71 } | 77 } |
| OLD | NEW |