| 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 SVGFEConvolveMatrixElement |
| 8 interface SVGFEConvolveMatrixElement extends SVGElement, SVGFilterPrimitiveStand
ardAttributes { |
| 9 |
| 10 static final int SVG_EDGEMODE_DUPLICATE = 1; |
| 11 |
| 12 static final int SVG_EDGEMODE_NONE = 3; |
| 13 |
| 14 static final int SVG_EDGEMODE_UNKNOWN = 0; |
| 15 |
| 16 static final int SVG_EDGEMODE_WRAP = 2; |
| 17 |
| 18 /** @domName SVGFEConvolveMatrixElement.bias */ |
| 19 final SVGAnimatedNumber bias; |
| 20 |
| 21 /** @domName SVGFEConvolveMatrixElement.divisor */ |
| 22 final SVGAnimatedNumber divisor; |
| 23 |
| 24 /** @domName SVGFEConvolveMatrixElement.edgeMode */ |
| 25 final SVGAnimatedEnumeration edgeMode; |
| 26 |
| 27 /** @domName SVGFEConvolveMatrixElement.in1 */ |
| 28 final SVGAnimatedString in1; |
| 29 |
| 30 /** @domName SVGFEConvolveMatrixElement.kernelMatrix */ |
| 31 final SVGAnimatedNumberList kernelMatrix; |
| 32 |
| 33 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthX */ |
| 34 final SVGAnimatedNumber kernelUnitLengthX; |
| 35 |
| 36 /** @domName SVGFEConvolveMatrixElement.kernelUnitLengthY */ |
| 37 final SVGAnimatedNumber kernelUnitLengthY; |
| 38 |
| 39 /** @domName SVGFEConvolveMatrixElement.orderX */ |
| 40 final SVGAnimatedInteger orderX; |
| 41 |
| 42 /** @domName SVGFEConvolveMatrixElement.orderY */ |
| 43 final SVGAnimatedInteger orderY; |
| 44 |
| 45 /** @domName SVGFEConvolveMatrixElement.preserveAlpha */ |
| 46 final SVGAnimatedBoolean preserveAlpha; |
| 47 |
| 48 /** @domName SVGFEConvolveMatrixElement.targetX */ |
| 49 final SVGAnimatedInteger targetX; |
| 50 |
| 51 /** @domName SVGFEConvolveMatrixElement.targetY */ |
| 52 final SVGAnimatedInteger targetY; |
| 53 } |
| OLD | NEW |