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

Side by Side Diff: client/dom/generated/src/frog/SVGPolygonElement.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 SVGPolygonElementJS extends SVGElementJS implements SVGPolygonElement nati ve "*SVGPolygonElement" { 2 class SVGPolygonElementJs extends SVGElementJs implements SVGPolygonElement nati ve "*SVGPolygonElement" {
3 3
4 SVGPointListJS get animatedPoints() native "return this.animatedPoints;"; 4 SVGPointListJs get animatedPoints() native "return this.animatedPoints;";
5 5
6 SVGPointListJS get points() native "return this.points;"; 6 SVGPointListJs get points() native "return this.points;";
7 7
8 // From SVGTests 8 // From SVGTests
9 9
10 SVGStringListJS get requiredExtensions() native "return this.requiredExtension s;"; 10 SVGStringListJs get requiredExtensions() native "return this.requiredExtension s;";
11 11
12 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;"; 12 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;";
13 13
14 SVGStringListJS get systemLanguage() native "return this.systemLanguage;"; 14 SVGStringListJs get systemLanguage() native "return this.systemLanguage;";
15 15
16 bool hasExtension(String extension) native; 16 bool hasExtension(String extension) native;
17 17
18 // From SVGLangSpace 18 // From SVGLangSpace
19 19
20 String get xmllang() native "return this.xmllang;"; 20 String get xmllang() native "return this.xmllang;";
21 21
22 void set xmllang(String value) native "this.xmllang = value;"; 22 void set xmllang(String value) native "this.xmllang = value;";
23 23
24 String get xmlspace() native "return this.xmlspace;"; 24 String get xmlspace() native "return this.xmlspace;";
25 25
26 void set xmlspace(String value) native "this.xmlspace = value;"; 26 void set xmlspace(String value) native "this.xmlspace = value;";
27 27
28 // From SVGExternalResourcesRequired 28 // From SVGExternalResourcesRequired
29 29
30 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter nalResourcesRequired;"; 30 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter nalResourcesRequired;";
31 31
32 // From SVGStylable 32 // From SVGStylable
33 33
34 SVGAnimatedStringJS get className() native "return this.className;"; 34 SVGAnimatedStringJs get className() native "return this.className;";
35 35
36 CSSStyleDeclarationJS get style() native "return this.style;"; 36 CSSStyleDeclarationJs get style() native "return this.style;";
37 37
38 CSSValueJS getPresentationAttribute(String name) native; 38 CSSValueJs getPresentationAttribute(String name) native;
39 39
40 // From SVGTransformable 40 // From SVGTransformable
41 41
42 SVGAnimatedTransformListJS get transform() native "return this.transform;"; 42 SVGAnimatedTransformListJs get transform() native "return this.transform;";
43 43
44 // From SVGLocatable 44 // From SVGLocatable
45 45
46 SVGElementJS get farthestViewportElement() native "return this.farthestViewpor tElement;"; 46 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor tElement;";
47 47
48 SVGElementJS get nearestViewportElement() native "return this.nearestViewportE lement;"; 48 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE lement;";
49 49
50 SVGRectJS getBBox() native; 50 SVGRectJs getBBox() native;
51 51
52 SVGMatrixJS getCTM() native; 52 SVGMatrixJs getCTM() native;
53 53
54 SVGMatrixJS getScreenCTM() native; 54 SVGMatrixJs getScreenCTM() native;
55 55
56 SVGMatrixJS getTransformToElement(SVGElementJS element) native; 56 SVGMatrixJs getTransformToElement(SVGElementJs element) native;
57 } 57 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/SVGPointList.dart ('k') | client/dom/generated/src/frog/SVGPolylineElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698