| OLD | NEW |
| 1 | 1 |
| 2 class SVGMarkerElement extends SVGElement native "*SVGMarkerElement" { | 2 class SVGMarkerElement extends SVGElement native "*SVGMarkerElement" { |
| 3 | 3 |
| 4 static final int SVG_MARKERUNITS_STROKEWIDTH = 2; |
| 5 |
| 6 static final int SVG_MARKERUNITS_UNKNOWN = 0; |
| 7 |
| 8 static final int SVG_MARKERUNITS_USERSPACEONUSE = 1; |
| 9 |
| 10 static final int SVG_MARKER_ORIENT_ANGLE = 2; |
| 11 |
| 12 static final int SVG_MARKER_ORIENT_AUTO = 1; |
| 13 |
| 14 static final int SVG_MARKER_ORIENT_UNKNOWN = 0; |
| 15 |
| 4 SVGAnimatedLength markerHeight; | 16 SVGAnimatedLength markerHeight; |
| 5 | 17 |
| 6 SVGAnimatedEnumeration markerUnits; | 18 SVGAnimatedEnumeration markerUnits; |
| 7 | 19 |
| 8 SVGAnimatedLength markerWidth; | 20 SVGAnimatedLength markerWidth; |
| 9 | 21 |
| 10 SVGAnimatedAngle orientAngle; | 22 SVGAnimatedAngle orientAngle; |
| 11 | 23 |
| 12 SVGAnimatedEnumeration orientType; | 24 SVGAnimatedEnumeration orientType; |
| 13 | 25 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 36 CSSStyleDeclaration style; | 48 CSSStyleDeclaration style; |
| 37 | 49 |
| 38 CSSValue getPresentationAttribute(String name) native; | 50 CSSValue getPresentationAttribute(String name) native; |
| 39 | 51 |
| 40 // From SVGFitToViewBox | 52 // From SVGFitToViewBox |
| 41 | 53 |
| 42 SVGAnimatedPreserveAspectRatio preserveAspectRatio; | 54 SVGAnimatedPreserveAspectRatio preserveAspectRatio; |
| 43 | 55 |
| 44 SVGAnimatedRect viewBox; | 56 SVGAnimatedRect viewBox; |
| 45 } | 57 } |
| OLD | NEW |