OLD | NEW |
1 | 1 |
2 class _SVGPolygonElementJs extends _SVGElementJs implements SVGPolygonElement na
tive "*SVGPolygonElement" { | 2 class _SVGPolygonElementJs extends _SVGElementJs implements SVGPolygonElement na
tive "*SVGPolygonElement" { |
3 | 3 |
4 _SVGPointListJs get animatedPoints() native "return this.animatedPoints;"; | 4 final _SVGPointListJs animatedPoints; |
5 | 5 |
6 _SVGPointListJs get points() native "return this.points;"; | 6 final _SVGPointListJs points; |
7 | 7 |
8 // From SVGTests | 8 // From SVGTests |
9 | 9 |
10 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio
ns;"; | 10 final _SVGStringListJs requiredExtensions; |
11 | 11 |
12 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"
; | 12 final _SVGStringListJs requiredFeatures; |
13 | 13 |
14 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; | 14 final _SVGStringListJs 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 xmllang; |
21 | 21 |
22 void set xmllang(String value) native "this.xmllang = value;"; | 22 String xmlspace; |
23 | |
24 String get xmlspace() native "return this.xmlspace;"; | |
25 | |
26 void set xmlspace(String value) native "this.xmlspace = value;"; | |
27 | 23 |
28 // From SVGExternalResourcesRequired | 24 // From SVGExternalResourcesRequired |
29 | 25 |
30 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; | 26 final _SVGAnimatedBooleanJs externalResourcesRequired; |
31 | 27 |
32 // From SVGStylable | 28 // From SVGStylable |
33 | 29 |
34 _SVGAnimatedStringJs get className() native "return this.className;"; | 30 final _SVGAnimatedStringJs className; |
35 | 31 |
36 _CSSStyleDeclarationJs get style() native "return this.style;"; | 32 final _CSSStyleDeclarationJs style; |
37 | 33 |
38 _CSSValueJs getPresentationAttribute(String name) native; | 34 _CSSValueJs getPresentationAttribute(String name) native; |
39 | 35 |
40 // From SVGTransformable | 36 // From SVGTransformable |
41 | 37 |
42 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; | 38 final _SVGAnimatedTransformListJs transform; |
43 | 39 |
44 // From SVGLocatable | 40 // From SVGLocatable |
45 | 41 |
46 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo
rtElement;"; | 42 final _SVGElementJs farthestViewportElement; |
47 | 43 |
48 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport
Element;"; | 44 final _SVGElementJs nearestViewportElement; |
49 | 45 |
50 _SVGRectJs getBBox() native; | 46 _SVGRectJs getBBox() native; |
51 | 47 |
52 _SVGMatrixJs getCTM() native; | 48 _SVGMatrixJs getCTM() native; |
53 | 49 |
54 _SVGMatrixJs getScreenCTM() native; | 50 _SVGMatrixJs getScreenCTM() native; |
55 | 51 |
56 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; | 52 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
57 } | 53 } |
OLD | NEW |