| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class SVGTextContentElement extends SVGElement native "SVGTextContentElement" { |
| 3 |
| 4 SVGAnimatedEnumeration lengthAdjust; |
| 5 |
| 6 SVGAnimatedLength textLength; |
| 7 |
| 8 int getCharNumAtPosition(SVGPoint point) native; |
| 9 |
| 10 num getComputedTextLength() native; |
| 11 |
| 12 SVGPoint getEndPositionOfChar(int offset) native; |
| 13 |
| 14 SVGRect getExtentOfChar(int offset) native; |
| 15 |
| 16 int getNumberOfChars() native; |
| 17 |
| 18 num getRotationOfChar(int offset) native; |
| 19 |
| 20 SVGPoint getStartPositionOfChar(int offset) native; |
| 21 |
| 22 num getSubStringLength(int offset, int length) native; |
| 23 |
| 24 void selectSubString(int offset, int length) native; |
| 25 |
| 26 // From SVGTests |
| 27 |
| 28 SVGStringList requiredExtensions; |
| 29 |
| 30 SVGStringList requiredFeatures; |
| 31 |
| 32 SVGStringList systemLanguage; |
| 33 |
| 34 bool hasExtension(String extension) native; |
| 35 |
| 36 // From SVGLangSpace |
| 37 |
| 38 String xmllang; |
| 39 |
| 40 String xmlspace; |
| 41 |
| 42 // From SVGExternalResourcesRequired |
| 43 |
| 44 SVGAnimatedBoolean externalResourcesRequired; |
| 45 |
| 46 // From SVGStylable |
| 47 |
| 48 SVGAnimatedString className; |
| 49 |
| 50 CSSStyleDeclaration style; |
| 51 |
| 52 CSSValue getPresentationAttribute(String name) native; |
| 53 } |
| OLD | NEW |