OLD | NEW |
1 | 1 |
2 class _SVGSwitchElementImpl extends _SVGElementImpl implements SVGSwitchElement
native "*SVGSwitchElement" { | 2 class _SVGSwitchElementImpl extends _SVGElementImpl implements SVGSwitchElement
native "*SVGSwitchElement" { |
3 | 3 |
4 // From SVGTests | 4 // From SVGTests |
5 | 5 |
6 final _SVGStringListImpl requiredExtensions; | 6 final _SVGStringListImpl requiredExtensions; |
7 | 7 |
8 final _SVGStringListImpl requiredFeatures; | 8 final _SVGStringListImpl requiredFeatures; |
9 | 9 |
10 final _SVGStringListImpl systemLanguage; | 10 final _SVGStringListImpl 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 xmllang; | 16 String xmllang; |
17 | 17 |
18 String xmlspace; | 18 String xmlspace; |
19 | 19 |
20 // From SVGExternalResourcesRequired | 20 // From SVGExternalResourcesRequired |
21 | 21 |
22 final _SVGAnimatedBooleanImpl externalResourcesRequired; | 22 final _SVGAnimatedBooleanImpl externalResourcesRequired; |
23 | 23 |
24 // From SVGStylable | 24 // From SVGStylable |
25 | 25 |
26 _SVGAnimatedStringImpl get _className() native "return this.className;"; | 26 _SVGAnimatedStringImpl get _svgClassName() native "return this.className;"; |
27 | 27 |
28 // Use implementation from Element. | 28 // Use implementation from Element. |
29 // final _CSSStyleDeclarationImpl style; | 29 // final _CSSStyleDeclarationImpl style; |
30 | 30 |
31 _CSSValueImpl getPresentationAttribute(String name) native; | 31 _CSSValueImpl getPresentationAttribute(String name) native; |
32 | 32 |
33 // From SVGTransformable | 33 // From SVGTransformable |
34 | 34 |
35 final _SVGAnimatedTransformListImpl transform; | 35 final _SVGAnimatedTransformListImpl transform; |
36 | 36 |
37 // From SVGLocatable | 37 // From SVGLocatable |
38 | 38 |
39 final _SVGElementImpl farthestViewportElement; | 39 final _SVGElementImpl farthestViewportElement; |
40 | 40 |
41 final _SVGElementImpl nearestViewportElement; | 41 final _SVGElementImpl nearestViewportElement; |
42 | 42 |
43 _SVGRectImpl getBBox() native; | 43 _SVGRectImpl getBBox() native; |
44 | 44 |
45 _SVGMatrixImpl getCTM() native; | 45 _SVGMatrixImpl getCTM() native; |
46 | 46 |
47 _SVGMatrixImpl getScreenCTM() native; | 47 _SVGMatrixImpl getScreenCTM() native; |
48 | 48 |
49 _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native; | 49 _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native; |
50 } | 50 } |
OLD | NEW |