| 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 SVGFEMorphologyElement |
| 8 interface SVGFEMorphologyElement extends SVGElement, SVGFilterPrimitiveStandardA
ttributes { |
| 9 |
| 10 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 11 |
| 12 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 13 |
| 14 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 15 |
| 16 /** @domName SVGFEMorphologyElement.in1 */ |
| 17 final SVGAnimatedString in1; |
| 18 |
| 19 /** @domName SVGFEMorphologyElement.operator */ |
| 20 final SVGAnimatedEnumeration operator; |
| 21 |
| 22 /** @domName SVGFEMorphologyElement.radiusX */ |
| 23 final SVGAnimatedNumber radiusX; |
| 24 |
| 25 /** @domName SVGFEMorphologyElement.radiusY */ |
| 26 final SVGAnimatedNumber radiusY; |
| 27 |
| 28 /** @domName SVGFEMorphologyElement.setRadius */ |
| 29 void setRadius(num radiusX, num radiusY); |
| 30 } |
| OLD | NEW |