OLD | NEW |
| (Empty) |
1 | |
2 class _SVGPolygonElementImpl extends _SVGElementImpl implements SVGPolygonElemen
t native "*SVGPolygonElement" { | |
3 | |
4 final _SVGPointListImpl animatedPoints; | |
5 | |
6 final _SVGPointListImpl points; | |
7 | |
8 // From SVGTests | |
9 | |
10 final _SVGStringListImpl requiredExtensions; | |
11 | |
12 final _SVGStringListImpl requiredFeatures; | |
13 | |
14 final _SVGStringListImpl systemLanguage; | |
15 | |
16 bool hasExtension(String extension) native; | |
17 | |
18 // From SVGLangSpace | |
19 | |
20 String xmllang; | |
21 | |
22 String xmlspace; | |
23 | |
24 // From SVGExternalResourcesRequired | |
25 | |
26 final _SVGAnimatedBooleanImpl externalResourcesRequired; | |
27 | |
28 // From SVGStylable | |
29 | |
30 _SVGAnimatedStringImpl get _svgClassName() native "return this.className;"; | |
31 | |
32 // Use implementation from Element. | |
33 // final _CSSStyleDeclarationImpl style; | |
34 | |
35 _CSSValueImpl getPresentationAttribute(String name) native; | |
36 | |
37 // From SVGTransformable | |
38 | |
39 final _SVGAnimatedTransformListImpl transform; | |
40 | |
41 // From SVGLocatable | |
42 | |
43 final _SVGElementImpl farthestViewportElement; | |
44 | |
45 final _SVGElementImpl nearestViewportElement; | |
46 | |
47 _SVGRectImpl getBBox() native; | |
48 | |
49 _SVGMatrixImpl getCTM() native; | |
50 | |
51 _SVGMatrixImpl getScreenCTM() native; | |
52 | |
53 _SVGMatrixImpl getTransformToElement(_SVGElementImpl element) native; | |
54 } | |
OLD | NEW |