| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement"
{ | 2 class SVGFEMorphologyElement extends SVGElement native "*SVGFEMorphologyElement"
{ |
| 3 | 3 |
| 4 static final int SVG_MORPHOLOGY_OPERATOR_DILATE = 2; |
| 5 |
| 6 static final int SVG_MORPHOLOGY_OPERATOR_ERODE = 1; |
| 7 |
| 8 static final int SVG_MORPHOLOGY_OPERATOR_UNKNOWN = 0; |
| 9 |
| 4 SVGAnimatedString in1; | 10 SVGAnimatedString in1; |
| 5 | 11 |
| 6 SVGAnimatedEnumeration operator; | 12 SVGAnimatedEnumeration operator; |
| 7 | 13 |
| 8 SVGAnimatedNumber radiusX; | 14 SVGAnimatedNumber radiusX; |
| 9 | 15 |
| 10 SVGAnimatedNumber radiusY; | 16 SVGAnimatedNumber radiusY; |
| 11 | 17 |
| 12 void setRadius(num radiusX, num radiusY) native; | 18 void setRadius(num radiusX, num radiusY) native; |
| 13 | 19 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 24 SVGAnimatedLength y; | 30 SVGAnimatedLength y; |
| 25 | 31 |
| 26 // From SVGStylable | 32 // From SVGStylable |
| 27 | 33 |
| 28 SVGAnimatedString className; | 34 SVGAnimatedString className; |
| 29 | 35 |
| 30 CSSStyleDeclaration style; | 36 CSSStyleDeclaration style; |
| 31 | 37 |
| 32 CSSValue getPresentationAttribute(String name) native; | 38 CSSValue getPresentationAttribute(String name) native; |
| 33 } | 39 } |
| OLD | NEW |