Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Side by Side Diff: client/html/src/CSSStyleDeclarationWrappingImplementation.dart

Issue 9243023: CSSStyleDeclaration#cssText should take a string. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: htmlimpl Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « client/html/release/htmlimpl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698