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

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

Powered by Google App Engine
This is Rietveld 408576698