| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" { | 2 class SVGFEBlendElement extends SVGElement native "*SVGFEBlendElement" { |
| 3 | 3 |
| 4 static final int SVG_FEBLEND_MODE_DARKEN = 4; |
| 5 |
| 6 static final int SVG_FEBLEND_MODE_LIGHTEN = 5; |
| 7 |
| 8 static final int SVG_FEBLEND_MODE_MULTIPLY = 2; |
| 9 |
| 10 static final int SVG_FEBLEND_MODE_NORMAL = 1; |
| 11 |
| 12 static final int SVG_FEBLEND_MODE_SCREEN = 3; |
| 13 |
| 14 static final int SVG_FEBLEND_MODE_UNKNOWN = 0; |
| 15 |
| 4 SVGAnimatedString in1; | 16 SVGAnimatedString in1; |
| 5 | 17 |
| 6 SVGAnimatedString in2; | 18 SVGAnimatedString in2; |
| 7 | 19 |
| 8 SVGAnimatedEnumeration mode; | 20 SVGAnimatedEnumeration mode; |
| 9 | 21 |
| 10 // From SVGFilterPrimitiveStandardAttributes | 22 // From SVGFilterPrimitiveStandardAttributes |
| 11 | 23 |
| 12 SVGAnimatedLength height; | 24 SVGAnimatedLength height; |
| 13 | 25 |
| 14 SVGAnimatedString result; | 26 SVGAnimatedString result; |
| 15 | 27 |
| 16 SVGAnimatedLength width; | 28 SVGAnimatedLength width; |
| 17 | 29 |
| 18 SVGAnimatedLength x; | 30 SVGAnimatedLength x; |
| 19 | 31 |
| 20 SVGAnimatedLength y; | 32 SVGAnimatedLength y; |
| 21 | 33 |
| 22 // From SVGStylable | 34 // From SVGStylable |
| 23 | 35 |
| 24 SVGAnimatedString className; | 36 SVGAnimatedString className; |
| 25 | 37 |
| 26 CSSStyleDeclaration style; | 38 CSSStyleDeclaration style; |
| 27 | 39 |
| 28 CSSValue getPresentationAttribute(String name) native; | 40 CSSValue getPresentationAttribute(String name) native; |
| 29 } | 41 } |
| OLD | NEW |