OLD | NEW |
1 | 1 |
2 class _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement
native "*SVGMarkerElement" { | 2 class _SVGMarkerElementImpl extends _SVGElementImpl implements SVGMarkerElement
native "*SVGMarkerElement" { |
3 | 3 |
4 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; | 4 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; |
5 | 5 |
6 static final int SVG_MARKERUNITS_UNKNOWN = 0; | 6 static final int SVG_MARKERUNITS_UNKNOWN = 0; |
7 | 7 |
8 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; | 8 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
9 | 9 |
10 static final int SVG_MARKER_ORIENT_ANGLE = 2; | 10 static final int SVG_MARKER_ORIENT_ANGLE = 2; |
(...skipping 25 matching lines...) Expand all Loading... |
36 String xmllang; | 36 String xmllang; |
37 | 37 |
38 String xmlspace; | 38 String xmlspace; |
39 | 39 |
40 // From SVGExternalResourcesRequired | 40 // From SVGExternalResourcesRequired |
41 | 41 |
42 final _SVGAnimatedBooleanImpl externalResourcesRequired; | 42 final _SVGAnimatedBooleanImpl externalResourcesRequired; |
43 | 43 |
44 // From SVGStylable | 44 // From SVGStylable |
45 | 45 |
46 _SVGAnimatedStringImpl get _className() native "return this.className;"; | 46 _SVGAnimatedStringImpl get _svgClassName() native "return this.className;"; |
47 | 47 |
48 // Use implementation from Element. | 48 // Use implementation from Element. |
49 // final _CSSStyleDeclarationImpl style; | 49 // final _CSSStyleDeclarationImpl style; |
50 | 50 |
51 _CSSValueImpl getPresentationAttribute(String name) native; | 51 _CSSValueImpl getPresentationAttribute(String name) native; |
52 | 52 |
53 // From SVGFitToViewBox | 53 // From SVGFitToViewBox |
54 | 54 |
55 final _SVGAnimatedPreserveAspectRatioImpl preserveAspectRatio; | 55 final _SVGAnimatedPreserveAspectRatioImpl preserveAspectRatio; |
56 | 56 |
57 final _SVGAnimatedRectImpl viewBox; | 57 final _SVGAnimatedRectImpl viewBox; |
58 } | 58 } |
OLD | NEW |