| OLD | NEW |
| 1 | 1 |
| 2 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" { | 2 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" { |
| 3 | 3 |
| 4 static final int LENGTHADJUST_SPACING = 1; |
| 5 |
| 6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 7 |
| 8 static final int LENGTHADJUST_UNKNOWN = 0; |
| 9 |
| 4 SVGAnimatedEnumeration lengthAdjust; | 10 SVGAnimatedEnumeration lengthAdjust; |
| 5 | 11 |
| 6 SVGAnimatedLength textLength; | 12 SVGAnimatedLength textLength; |
| 7 | 13 |
| 8 int getCharNumAtPosition(SVGPoint point) native; | 14 int getCharNumAtPosition(SVGPoint point) native; |
| 9 | 15 |
| 10 num getComputedTextLength() native; | 16 num getComputedTextLength() native; |
| 11 | 17 |
| 12 SVGPoint getEndPositionOfChar(int offset) native; | 18 SVGPoint getEndPositionOfChar(int offset) native; |
| 13 | 19 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 44 SVGAnimatedBoolean externalResourcesRequired; | 50 SVGAnimatedBoolean externalResourcesRequired; |
| 45 | 51 |
| 46 // From SVGStylable | 52 // From SVGStylable |
| 47 | 53 |
| 48 SVGAnimatedString className; | 54 SVGAnimatedString className; |
| 49 | 55 |
| 50 CSSStyleDeclaration style; | 56 CSSStyleDeclaration style; |
| 51 | 57 |
| 52 CSSValue getPresentationAttribute(String name) native; | 58 CSSValue getPresentationAttribute(String name) native; |
| 53 } | 59 } |
| OLD | NEW |