| 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. | 5 // WARNING: Do not edit. |
| 6 // This file was generated by html/scripts/css_code_generator.py | 6 // This file was generated by html/scripts/css_code_generator.py |
| 7 | 7 |
| 8 // Source of CSS properties: | 8 // Source of CSS properties: |
| 9 // Source/WebCore/css/CSSPropertyNames.in | 9 // Source/WebCore/css/CSSPropertyNames.in |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 } else { | 32 } else { |
| 33 _cachedBrowserPrefix = '-webkit-'; | 33 _cachedBrowserPrefix = '-webkit-'; |
| 34 } | 34 } |
| 35 // TODO(jacobr): support IE 9.0 and Opera as well. | 35 // TODO(jacobr): support IE 9.0 and Opera as well. |
| 36 } | 36 } |
| 37 return _cachedBrowserPrefix; | 37 return _cachedBrowserPrefix; |
| 38 } | 38 } |
| 39 | 39 |
| 40 String get cssText() { return _ptr.cssText; } | 40 String get cssText() { return _ptr.cssText; } |
| 41 | 41 |
| 42 void set cssText(var value) { _ptr.cssText = value; } | 42 void set cssText(String value) { _ptr.cssText = value; } |
| 43 | 43 |
| 44 int get length() { return _ptr.length; } | 44 int get length() { return _ptr.length; } |
| 45 | 45 |
| 46 CSSRule get parentRule() { return LevelDom.wrapCSSRule(_ptr.parentRule); } | 46 CSSRule get parentRule() { return LevelDom.wrapCSSRule(_ptr.parentRule); } |
| 47 | 47 |
| 48 CSSValue getPropertyCSSValue(String propertyName) { | 48 CSSValue getPropertyCSSValue(String propertyName) { |
| 49 return LevelDom.wrapCSSValue(_ptr.getPropertyCSSValue(propertyName)); | 49 return LevelDom.wrapCSSValue(_ptr.getPropertyCSSValue(propertyName)); |
| 50 } | 50 } |
| 51 | 51 |
| 52 String getPropertyPriority(String propertyName) { | 52 String getPropertyPriority(String propertyName) { |
| (...skipping 2783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2836 | 2836 |
| 2837 /** Gets the value of "zoom" */ | 2837 /** Gets the value of "zoom" */ |
| 2838 String get zoom() => | 2838 String get zoom() => |
| 2839 getPropertyValue('zoom'); | 2839 getPropertyValue('zoom'); |
| 2840 | 2840 |
| 2841 /** Sets the value of "zoom" */ | 2841 /** Sets the value of "zoom" */ |
| 2842 void set zoom(var value) { | 2842 void set zoom(var value) { |
| 2843 setProperty('zoom', value, ''); | 2843 setProperty('zoom', value, ''); |
| 2844 } | 2844 } |
| 2845 } | 2845 } |
| OLD | NEW |