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

Side by Side Diff: client/dom/generated/src/frog/SVGMaskElement.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 SVGMaskElement extends SVGElement native "*SVGMaskElement" { 2 class SVGMaskElement extends SVGElement native "*SVGMaskElement" {
3 3
4 SVGAnimatedLength height; 4 SVGAnimatedLength get height() native "return this.height;";
5 5
6 SVGAnimatedEnumeration maskContentUnits; 6 SVGAnimatedEnumeration get maskContentUnits() native "return this.maskContentU nits;";
7 7
8 SVGAnimatedEnumeration maskUnits; 8 SVGAnimatedEnumeration get maskUnits() native "return this.maskUnits;";
9 9
10 SVGAnimatedLength width; 10 SVGAnimatedLength get width() native "return this.width;";
11 11
12 SVGAnimatedLength x; 12 SVGAnimatedLength get x() native "return this.x;";
13 13
14 SVGAnimatedLength y; 14 SVGAnimatedLength get y() native "return this.y;";
15 15
16 // From SVGTests 16 // From SVGTests
17 17
18 SVGStringList requiredExtensions; 18 SVGStringList get requiredExtensions() native "return this.requiredExtensions; ";
19 19
20 SVGStringList requiredFeatures; 20 SVGStringList get requiredFeatures() native "return this.requiredFeatures;";
21 21
22 SVGStringList systemLanguage; 22 SVGStringList get systemLanguage() native "return this.systemLanguage;";
23 23
24 bool hasExtension(String extension) native; 24 bool hasExtension(String extension) native;
25 25
26 // From SVGLangSpace 26 // From SVGLangSpace
27 27
28 String xmllang; 28 String get xmllang() native "return this.xmllang;";
29 29
30 String xmlspace; 30 void set xmllang(String value) native "this.xmllang = value;";
31
32 String get xmlspace() native "return this.xmlspace;";
33
34 void set xmlspace(String value) native "this.xmlspace = value;";
31 35
32 // From SVGExternalResourcesRequired 36 // From SVGExternalResourcesRequired
33 37
34 SVGAnimatedBoolean externalResourcesRequired; 38 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa lResourcesRequired;";
35 39
36 // From SVGStylable 40 // From SVGStylable
37 41
38 SVGAnimatedString className; 42 SVGAnimatedString get className() native "return this.className;";
39 43
40 CSSStyleDeclaration style; 44 CSSStyleDeclaration get style() native "return this.style;";
41 45
42 CSSValue getPresentationAttribute(String name) native; 46 CSSValue getPresentationAttribute(String name) native;
43 } 47 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGMarkerElement.dart ('k') | client/dom/generated/src/frog/SVGMatrix.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698