| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface CSSValue { | 7 interface CSSValue { |
| 8 | 8 |
| 9 static final int CSS_CUSTOM = 3; | 9 static final int CSS_CUSTOM = 3; |
| 10 | 10 |
| 11 static final int CSS_INHERIT = 0; | 11 static final int CSS_INHERIT = 0; |
| 12 | 12 |
| 13 static final int CSS_PRIMITIVE_VALUE = 1; | 13 static final int CSS_PRIMITIVE_VALUE = 1; |
| 14 | 14 |
| 15 static final int CSS_VALUE_LIST = 2; | 15 static final int CSS_VALUE_LIST = 2; |
| 16 | 16 |
| 17 String get cssText(); | 17 String cssText; |
| 18 | 18 |
| 19 void set cssText(String value); | 19 final int cssValueType; |
| 20 | |
| 21 int get cssValueType(); | |
| 22 } | 20 } |
| OLD | NEW |