| 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; | 4 static final int LENGTHADJUST_SPACING = 1; |
| 5 | 5 |
| 6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; | 6 static final int LENGTHADJUST_SPACINGANDGLYPHS = 2; |
| 7 | 7 |
| 8 static final int LENGTHADJUST_UNKNOWN = 0; | 8 static final int LENGTHADJUST_UNKNOWN = 0; |
| 9 | 9 |
| 10 SVGAnimatedEnumeration lengthAdjust; | 10 SVGAnimatedEnumeration lengthAdjust; |
| 11 | 11 |
| 12 SVGAnimatedLength textLength; | 12 SVGAnimatedLength textLength; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 SVGAnimatedBoolean externalResourcesRequired; | 50 SVGAnimatedBoolean externalResourcesRequired; |
| 51 | 51 |
| 52 // From SVGStylable | 52 // From SVGStylable |
| 53 | 53 |
| 54 SVGAnimatedString className; | 54 SVGAnimatedString className; |
| 55 | 55 |
| 56 CSSStyleDeclaration style; | 56 CSSStyleDeclaration style; |
| 57 | 57 |
| 58 CSSValue getPresentationAttribute(String name) native; | 58 CSSValue getPresentationAttribute(String name) native; |
| 59 } | 59 } |
| OLD | NEW |