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

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

Powered by Google App Engine
This is Rietveld 408576698