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

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

Issue 8341027: Fix client/html_tests so they use the new framework. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 2 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
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
11 // TODO(jacobr): add versions that take numeric values in px, miliseconds, etc. 11 // TODO(jacobr): add versions that take numeric values in px, miliseconds, etc.
12 12
13 interface CSSStyleDeclaration { 13 interface CSSStyleDeclaration factory CSSStyleDeclarationWrappingImplementation {
14
15 CSSStyleDeclaration();
16
17 CSSStyleDeclaration.css(String css);
14 18
15 String get cssText(); 19 String get cssText();
16 20
17 void set cssText(String value); 21 void set cssText(String value);
18 22
19 int get length(); 23 int get length();
20 24
21 CSSRule get parentRule(); 25 CSSRule get parentRule();
22 26
23 CSSValue getPropertyCSSValue(String propertyName); 27 CSSValue getPropertyCSSValue(String propertyName);
(...skipping 1848 matching lines...) Expand 10 before | Expand all | Expand 10 after
1872 /** Sets the value of "z-index" */ 1876 /** Sets the value of "z-index" */
1873 void set zIndex(String value); 1877 void set zIndex(String value);
1874 1878
1875 /** Gets the value of "zoom" */ 1879 /** Gets the value of "zoom" */
1876 String get zoom(); 1880 String get zoom();
1877 1881
1878 /** Sets the value of "zoom" */ 1882 /** Sets the value of "zoom" */
1879 void set zoom(String value); 1883 void set zoom(String value);
1880 1884
1881 } 1885 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698