| OLD | NEW |
| 1 | 1 |
| 2 class SVGTextContentElement extends SVGElement native "SVGTextContentElement" { | 2 class SVGTextContentElement extends SVGElement native "*SVGTextContentElement" { |
| 3 | 3 |
| 4 SVGAnimatedEnumeration lengthAdjust; | 4 SVGAnimatedEnumeration lengthAdjust; |
| 5 | 5 |
| 6 SVGAnimatedLength textLength; | 6 SVGAnimatedLength textLength; |
| 7 | 7 |
| 8 int getCharNumAtPosition(SVGPoint point) native; | 8 int getCharNumAtPosition(SVGPoint point) native; |
| 9 | 9 |
| 10 num getComputedTextLength() native; | 10 num getComputedTextLength() native; |
| 11 | 11 |
| 12 SVGPoint getEndPositionOfChar(int offset) native; | 12 SVGPoint getEndPositionOfChar(int offset) native; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 SVGAnimatedBoolean externalResourcesRequired; | 44 SVGAnimatedBoolean externalResourcesRequired; |
| 45 | 45 |
| 46 // From SVGStylable | 46 // From SVGStylable |
| 47 | 47 |
| 48 SVGAnimatedString className; | 48 SVGAnimatedString className; |
| 49 | 49 |
| 50 CSSStyleDeclaration style; | 50 CSSStyleDeclaration style; |
| 51 | 51 |
| 52 CSSValue getPresentationAttribute(String name) native; | 52 CSSValue getPresentationAttribute(String name) native; |
| 53 } | 53 } |
| OLD | NEW |