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