| 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; | 4 static final int SVG_CHANNEL_A = 4; |
| 5 | 5 |
| 6 static final int SVG_CHANNEL_B = 3; | 6 static final int SVG_CHANNEL_B = 3; |
| 7 | 7 |
| 8 static final int SVG_CHANNEL_G = 2; | 8 static final int SVG_CHANNEL_G = 2; |
| 9 | 9 |
| 10 static final int SVG_CHANNEL_R = 1; | 10 static final int SVG_CHANNEL_R = 1; |
| 11 | 11 |
| 12 static final int SVG_CHANNEL_UNKNOWN = 0; | 12 static final int SVG_CHANNEL_UNKNOWN = 0; |
| 13 | 13 |
| 14 SVGAnimatedString in1; | 14 SVGAnimatedString get in1() native "return this.in1;"; |
| 15 | 15 |
| 16 SVGAnimatedString in2; | 16 SVGAnimatedString get in2() native "return this.in2;"; |
| 17 | 17 |
| 18 SVGAnimatedNumber scale; | 18 SVGAnimatedNumber get scale() native "return this.scale;"; |
| 19 | 19 |
| 20 SVGAnimatedEnumeration xChannelSelector; | 20 SVGAnimatedEnumeration get xChannelSelector() native "return this.xChannelSele
ctor;"; |
| 21 | 21 |
| 22 SVGAnimatedEnumeration yChannelSelector; | 22 SVGAnimatedEnumeration get yChannelSelector() native "return this.yChannelSele
ctor;"; |
| 23 | 23 |
| 24 // From SVGFilterPrimitiveStandardAttributes | 24 // From SVGFilterPrimitiveStandardAttributes |
| 25 | 25 |
| 26 SVGAnimatedLength height; | 26 SVGAnimatedLength get height() native "return this.height;"; |
| 27 | 27 |
| 28 SVGAnimatedString result; | 28 SVGAnimatedString get result() native "return this.result;"; |
| 29 | 29 |
| 30 SVGAnimatedLength width; | 30 SVGAnimatedLength get width() native "return this.width;"; |
| 31 | 31 |
| 32 SVGAnimatedLength x; | 32 SVGAnimatedLength get x() native "return this.x;"; |
| 33 | 33 |
| 34 SVGAnimatedLength y; | 34 SVGAnimatedLength get y() native "return this.y;"; |
| 35 | 35 |
| 36 // From SVGStylable | 36 // From SVGStylable |
| 37 | 37 |
| 38 SVGAnimatedString className; | 38 SVGAnimatedString get className() native "return this.className;"; |
| 39 | 39 |
| 40 CSSStyleDeclaration style; | 40 CSSStyleDeclaration get style() native "return this.style;"; |
| 41 | 41 |
| 42 CSSValue getPresentationAttribute(String name) native; | 42 CSSValue getPresentationAttribute(String name) native; |
| 43 } | 43 } |
| OLD | NEW |