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

Side by Side Diff: tools/dom/templates/html/impl/impl_CSSStyleDeclaration.darttemplate

Issue 2705213003: Refined types for most HtmlElement factory constructors (Closed)
Patch Set: Created 3 years, 10 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
OLDNEW
1 1
2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 2 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
3 // for details. All rights reserved. Use of this source code is governed by a 3 // for details. All rights reserved. Use of this source code is governed by a
4 // BSD-style license that can be found in the LICENSE file. 4 // BSD-style license that can be found in the LICENSE file.
5 5
6 // WARNING: DO NOT EDIT THIS TEMPLATE FILE. 6 // WARNING: DO NOT EDIT THIS TEMPLATE FILE.
7 // The template file was generated by scripts/css_code_generator.py 7 // The template file was generated by scripts/css_code_generator.py
8 8
9 // Source of CSS properties: 9 // Source of CSS properties:
10 // CSSPropertyNames.in 10 // CSSPropertyNames.in
11 11
12 part of $LIBRARYNAME; 12 part of $LIBRARYNAME;
13 13
14 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with 14 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME $EXTENDS with
15 $(CLASSNAME)Base $IMPLEMENTS { 15 $(CLASSNAME)Base $IMPLEMENTS {
16 factory $CLASSNAME() => new CssStyleDeclaration.css(''); 16 factory $CLASSNAME() => new CssStyleDeclaration.css('');
17 17
18 factory $CLASSNAME.css(String css) { 18 factory $CLASSNAME.css(String css) {
19 final style = new Element.tag('div').style; 19 final style = new DivElement().style;
20 style.cssText = css; 20 style.cssText = css;
21 return style; 21 return style;
22 } 22 }
23 23
24 /// Returns the value of the property if the provided *CSS* property 24 /// Returns the value of the property if the provided *CSS* property
25 /// name is supported on this element and if the value is set. Otherwise 25 /// name is supported on this element and if the value is set. Otherwise
26 /// returns an empty string. 26 /// returns an empty string.
27 /// 27 ///
28 /// Please note the property name uses camelCase, not-hyphens. 28 /// Please note the property name uses camelCase, not-hyphens.
29 String getPropertyValue(String propertyName) { 29 String getPropertyValue(String propertyName) {
(...skipping 4692 matching lines...) Expand 10 before | Expand all | Expand 10 after
4722 4722
4723 /** Gets the value of "zoom" */ 4723 /** Gets the value of "zoom" */
4724 String get zoom => 4724 String get zoom =>
4725 getPropertyValue('zoom'); 4725 getPropertyValue('zoom');
4726 4726
4727 /** Sets the value of "zoom" */ 4727 /** Sets the value of "zoom" */
4728 set zoom(String value) { 4728 set zoom(String value) {
4729 setProperty('zoom', value, ''); 4729 setProperty('zoom', value, '');
4730 } 4730 }
4731 } 4731 }
OLDNEW
« no previous file with comments | « tools/dom/scripts/systemnative.py ('k') | tools/dom/templates/html/impl/impl_DocumentFragment.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698