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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 SVGMaskElementJS extends SVGElementJS implements SVGMaskElement native "*S VGMaskElement" { 2 class SVGMaskElementJs extends SVGElementJs implements SVGMaskElement native "*S VGMaskElement" {
3 3
4 SVGAnimatedLengthJS get height() native "return this.height;"; 4 SVGAnimatedLengthJs get height() native "return this.height;";
5 5
6 SVGAnimatedEnumerationJS get maskContentUnits() native "return this.maskConten tUnits;"; 6 SVGAnimatedEnumerationJs get maskContentUnits() native "return this.maskConten tUnits;";
7 7
8 SVGAnimatedEnumerationJS get maskUnits() native "return this.maskUnits;"; 8 SVGAnimatedEnumerationJs get maskUnits() native "return this.maskUnits;";
9 9
10 SVGAnimatedLengthJS get width() native "return this.width;"; 10 SVGAnimatedLengthJs get width() native "return this.width;";
11 11
12 SVGAnimatedLengthJS get x() native "return this.x;"; 12 SVGAnimatedLengthJs get x() native "return this.x;";
13 13
14 SVGAnimatedLengthJS get y() native "return this.y;"; 14 SVGAnimatedLengthJs get y() native "return this.y;";
15 15
16 // From SVGTests 16 // From SVGTests
17 17
18 SVGStringListJS get requiredExtensions() native "return this.requiredExtension s;"; 18 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;";
19 19
20 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;"; 20 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;";
21 21
22 SVGStringListJS get systemLanguage() native "return this.systemLanguage;"; 22 SVGStringListJs 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 get xmllang() native "return this.xmllang;"; 28 String get xmllang() native "return this.xmllang;";
29 29
30 void set xmllang(String value) native "this.xmllang = value;"; 30 void set xmllang(String value) native "this.xmllang = value;";
31 31
32 String get xmlspace() native "return this.xmlspace;"; 32 String get xmlspace() native "return this.xmlspace;";
33 33
34 void set xmlspace(String value) native "this.xmlspace = value;"; 34 void set xmlspace(String value) native "this.xmlspace = value;";
35 35
36 // From SVGExternalResourcesRequired 36 // From SVGExternalResourcesRequired
37 37
38 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 38 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
39 39
40 // From SVGStylable 40 // From SVGStylable
41 41
42 SVGAnimatedStringJS get className() native "return this.className;"; 42 SVGAnimatedStringJs get className() native "return this.className;";
43 43
44 CSSStyleDeclarationJS get style() native "return this.style;"; 44 CSSStyleDeclarationJs get style() native "return this.style;";
45 45
46 CSSValueJS getPresentationAttribute(String name) native; 46 CSSValueJs getPresentationAttribute(String name) native;
47 } 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