| OLD | NEW |
| 1 | 1 |
| 2 class SVGTextPathElement extends SVGTextContentElement native "*SVGTextPathEleme
nt" { | 2 class SVGTextPathElementJS extends SVGTextContentElementJS implements SVGTextPat
hElement native "*SVGTextPathElement" { |
| 3 | 3 |
| 4 static final int TEXTPATH_METHODTYPE_ALIGN = 1; | 4 static final int TEXTPATH_METHODTYPE_ALIGN = 1; |
| 5 | 5 |
| 6 static final int TEXTPATH_METHODTYPE_STRETCH = 2; | 6 static final int TEXTPATH_METHODTYPE_STRETCH = 2; |
| 7 | 7 |
| 8 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; | 8 static final int TEXTPATH_METHODTYPE_UNKNOWN = 0; |
| 9 | 9 |
| 10 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; | 10 static final int TEXTPATH_SPACINGTYPE_AUTO = 1; |
| 11 | 11 |
| 12 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; | 12 static final int TEXTPATH_SPACINGTYPE_EXACT = 2; |
| 13 | 13 |
| 14 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; | 14 static final int TEXTPATH_SPACINGTYPE_UNKNOWN = 0; |
| 15 | 15 |
| 16 SVGAnimatedEnumeration get method() native "return this.method;"; | 16 SVGAnimatedEnumerationJS get method() native "return this.method;"; |
| 17 | 17 |
| 18 SVGAnimatedEnumeration get spacing() native "return this.spacing;"; | 18 SVGAnimatedEnumerationJS get spacing() native "return this.spacing;"; |
| 19 | 19 |
| 20 SVGAnimatedLength get startOffset() native "return this.startOffset;"; | 20 SVGAnimatedLengthJS get startOffset() native "return this.startOffset;"; |
| 21 | 21 |
| 22 // From SVGURIReference | 22 // From SVGURIReference |
| 23 | 23 |
| 24 SVGAnimatedString get href() native "return this.href;"; | 24 SVGAnimatedStringJS get href() native "return this.href;"; |
| 25 } | 25 } |
| OLD | NEW |