| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName SVGFEDisplacementMapElement |
| 8 interface SVGFEDisplacementMapElement extends SVGElement, SVGFilterPrimitiveStan
dardAttributes { |
| 9 |
| 10 static final int SVG_CHANNEL_A = 4; |
| 11 |
| 12 static final int SVG_CHANNEL_B = 3; |
| 13 |
| 14 static final int SVG_CHANNEL_G = 2; |
| 15 |
| 16 static final int SVG_CHANNEL_R = 1; |
| 17 |
| 18 static final int SVG_CHANNEL_UNKNOWN = 0; |
| 19 |
| 20 /** @domName SVGFEDisplacementMapElement.in1 */ |
| 21 final SVGAnimatedString in1; |
| 22 |
| 23 /** @domName SVGFEDisplacementMapElement.in2 */ |
| 24 final SVGAnimatedString in2; |
| 25 |
| 26 /** @domName SVGFEDisplacementMapElement.scale */ |
| 27 final SVGAnimatedNumber scale; |
| 28 |
| 29 /** @domName SVGFEDisplacementMapElement.xChannelSelector */ |
| 30 final SVGAnimatedEnumeration xChannelSelector; |
| 31 |
| 32 /** @domName SVGFEDisplacementMapElement.yChannelSelector */ |
| 33 final SVGAnimatedEnumeration yChannelSelector; |
| 34 } |
| OLD | NEW |