| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM
apElement" { | 2 class SVGFEDisplacementMapElement extends SVGElement native "*SVGFEDisplacementM
apElement" { |
| 3 | 3 |
| 4 static final int SVG_CHANNEL_A = 4; |
| 5 |
| 6 static final int SVG_CHANNEL_B = 3; |
| 7 |
| 8 static final int SVG_CHANNEL_G = 2; |
| 9 |
| 10 static final int SVG_CHANNEL_R = 1; |
| 11 |
| 12 static final int SVG_CHANNEL_UNKNOWN = 0; |
| 13 |
| 4 SVGAnimatedString in1; | 14 SVGAnimatedString in1; |
| 5 | 15 |
| 6 SVGAnimatedString in2; | 16 SVGAnimatedString in2; |
| 7 | 17 |
| 8 SVGAnimatedNumber scale; | 18 SVGAnimatedNumber scale; |
| 9 | 19 |
| 10 SVGAnimatedEnumeration xChannelSelector; | 20 SVGAnimatedEnumeration xChannelSelector; |
| 11 | 21 |
| 12 SVGAnimatedEnumeration yChannelSelector; | 22 SVGAnimatedEnumeration yChannelSelector; |
| 13 | 23 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 24 SVGAnimatedLength y; | 34 SVGAnimatedLength y; |
| 25 | 35 |
| 26 // From SVGStylable | 36 // From SVGStylable |
| 27 | 37 |
| 28 SVGAnimatedString className; | 38 SVGAnimatedString className; |
| 29 | 39 |
| 30 CSSStyleDeclaration style; | 40 CSSStyleDeclaration style; |
| 31 | 41 |
| 32 CSSValue getPresentationAttribute(String name) native; | 42 CSSValue getPresentationAttribute(String name) native; |
| 33 } | 43 } |
| OLD | NEW |