| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEColorMatrixElement extends SVGElement native "*SVGFEColorMatrixElemen
t" { | 2 class SVGFEColorMatrixElement extends SVGElement native "*SVGFEColorMatrixElemen
t" { |
| 3 | 3 |
| 4 static final int SVG_FECOLORMATRIX_TYPE_HUEROTATE = 3; |
| 5 |
| 6 static final int SVG_FECOLORMATRIX_TYPE_LUMINANCETOALPHA = 4; |
| 7 |
| 8 static final int SVG_FECOLORMATRIX_TYPE_MATRIX = 1; |
| 9 |
| 10 static final int SVG_FECOLORMATRIX_TYPE_SATURATE = 2; |
| 11 |
| 12 static final int SVG_FECOLORMATRIX_TYPE_UNKNOWN = 0; |
| 13 |
| 4 SVGAnimatedString in1; | 14 SVGAnimatedString in1; |
| 5 | 15 |
| 6 SVGAnimatedEnumeration type; | 16 SVGAnimatedEnumeration type; |
| 7 | 17 |
| 8 SVGAnimatedNumberList values; | 18 SVGAnimatedNumberList values; |
| 9 | 19 |
| 10 // From SVGFilterPrimitiveStandardAttributes | 20 // From SVGFilterPrimitiveStandardAttributes |
| 11 | 21 |
| 12 SVGAnimatedLength height; | 22 SVGAnimatedLength height; |
| 13 | 23 |
| 14 SVGAnimatedString result; | 24 SVGAnimatedString result; |
| 15 | 25 |
| 16 SVGAnimatedLength width; | 26 SVGAnimatedLength width; |
| 17 | 27 |
| 18 SVGAnimatedLength x; | 28 SVGAnimatedLength x; |
| 19 | 29 |
| 20 SVGAnimatedLength y; | 30 SVGAnimatedLength y; |
| 21 | 31 |
| 22 // From SVGStylable | 32 // From SVGStylable |
| 23 | 33 |
| 24 SVGAnimatedString className; | 34 SVGAnimatedString className; |
| 25 | 35 |
| 26 CSSStyleDeclaration style; | 36 CSSStyleDeclaration style; |
| 27 | 37 |
| 28 CSSValue getPresentationAttribute(String name) native; | 38 CSSValue getPresentationAttribute(String name) native; |
| 29 } | 39 } |
| OLD | NEW |