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

Side by Side Diff: client/dom/generated/src/frog/SVGSymbolElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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
OLDNEW
1 1
2 class SVGSymbolElement extends SVGElement native "*SVGSymbolElement" { 2 class SVGSymbolElement extends SVGElement native "*SVGSymbolElement" {
3 3
4 // From SVGLangSpace 4 // From SVGLangSpace
5 5
6 String xmllang; 6 String get xmllang() native "return this.xmllang;";
7 7
8 String xmlspace; 8 void set xmllang(String value) native "this.xmllang = value;";
9
10 String get xmlspace() native "return this.xmlspace;";
11
12 void set xmlspace(String value) native "this.xmlspace = value;";
9 13
10 // From SVGExternalResourcesRequired 14 // From SVGExternalResourcesRequired
11 15
12 SVGAnimatedBoolean externalResourcesRequired; 16 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;";
13 17
14 // From SVGStylable 18 // From SVGStylable
15 19
16 SVGAnimatedString className; 20 SVGAnimatedString get className() native "return this.className;";
17 21
18 CSSStyleDeclaration style; 22 CSSStyleDeclaration get style() native "return this.style;";
19 23
20 CSSValue getPresentationAttribute(String name) native; 24 CSSValue getPresentationAttribute(String name) native;
21 25
22 // From SVGFitToViewBox 26 // From SVGFitToViewBox
23 27
24 SVGAnimatedPreserveAspectRatio preserveAspectRatio; 28 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() native "return this.p reserveAspectRatio;";
25 29
26 SVGAnimatedRect viewBox; 30 SVGAnimatedRect get viewBox() native "return this.viewBox;";
27 } 31 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGSwitchElement.dart ('k') | client/dom/generated/src/frog/SVGTRefElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698