| OLD | NEW |
| 1 | 1 |
| 2 class SVGGradientElement extends SVGElement native "*SVGGradientElement" { | 2 class SVGGradientElement extends SVGElement native "*SVGGradientElement" { |
| 3 | 3 |
| 4 static final int SVG_SPREADMETHOD_PAD = 1; |
| 5 |
| 6 static final int SVG_SPREADMETHOD_REFLECT = 2; |
| 7 |
| 8 static final int SVG_SPREADMETHOD_REPEAT = 3; |
| 9 |
| 10 static final int SVG_SPREADMETHOD_UNKNOWN = 0; |
| 11 |
| 4 SVGAnimatedTransformList gradientTransform; | 12 SVGAnimatedTransformList gradientTransform; |
| 5 | 13 |
| 6 SVGAnimatedEnumeration gradientUnits; | 14 SVGAnimatedEnumeration gradientUnits; |
| 7 | 15 |
| 8 SVGAnimatedEnumeration spreadMethod; | 16 SVGAnimatedEnumeration spreadMethod; |
| 9 | 17 |
| 10 // From SVGURIReference | 18 // From SVGURIReference |
| 11 | 19 |
| 12 SVGAnimatedString href; | 20 SVGAnimatedString href; |
| 13 | 21 |
| 14 // From SVGExternalResourcesRequired | 22 // From SVGExternalResourcesRequired |
| 15 | 23 |
| 16 SVGAnimatedBoolean externalResourcesRequired; | 24 SVGAnimatedBoolean externalResourcesRequired; |
| 17 | 25 |
| 18 // From SVGStylable | 26 // From SVGStylable |
| 19 | 27 |
| 20 SVGAnimatedString className; | 28 SVGAnimatedString className; |
| 21 | 29 |
| 22 CSSStyleDeclaration style; | 30 CSSStyleDeclaration style; |
| 23 | 31 |
| 24 CSSValue getPresentationAttribute(String name) native; | 32 CSSValue getPresentationAttribute(String name) native; |
| 25 } | 33 } |
| OLD | NEW |