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

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

Issue 9016026: Moves over remaining .dart code references to 'factory' in interface declartions to 'default' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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/src/BeforeLoadEvent.dart ('k') | client/html/src/CloseEvent.dart » ('j') | 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
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 factory CSSStyleDeclarationWrappingImplementation { 13 interface CSSStyleDeclaration default CSSStyleDeclarationWrappingImplementation {
14 14
15 CSSStyleDeclaration(); 15 CSSStyleDeclaration();
16 16
17 CSSStyleDeclaration.css(String css); 17 CSSStyleDeclaration.css(String css);
18 18
19 String get cssText(); 19 String get cssText();
20 20
21 void set cssText(String value); 21 void set cssText(String value);
22 22
23 int get length(); 23 int get length();
(...skipping 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 /** Sets the value of "z-index" */ 1876 /** Sets the value of "z-index" */
1877 void set zIndex(String value); 1877 void set zIndex(String value);
1878 1878
1879 /** Gets the value of "zoom" */ 1879 /** Gets the value of "zoom" */
1880 String get zoom(); 1880 String get zoom();
1881 1881
1882 /** Sets the value of "zoom" */ 1882 /** Sets the value of "zoom" */
1883 void set zoom(String value); 1883 void set zoom(String value);
1884 1884
1885 } 1885 }
OLDNEW
« no previous file with comments | « client/html/src/BeforeLoadEvent.dart ('k') | client/html/src/CloseEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698