| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix
Element" { | 2 class SVGFEConvolveMatrixElement extends SVGElement native "*SVGFEConvolveMatrix
Element" { |
| 3 | 3 |
| 4 static final int SVG_EDGEMODE_DUPLICATE = 1; |
| 5 |
| 6 static final int SVG_EDGEMODE_NONE = 3; |
| 7 |
| 8 static final int SVG_EDGEMODE_UNKNOWN = 0; |
| 9 |
| 10 static final int SVG_EDGEMODE_WRAP = 2; |
| 11 |
| 4 SVGAnimatedNumber bias; | 12 SVGAnimatedNumber bias; |
| 5 | 13 |
| 6 SVGAnimatedNumber divisor; | 14 SVGAnimatedNumber divisor; |
| 7 | 15 |
| 8 SVGAnimatedEnumeration edgeMode; | 16 SVGAnimatedEnumeration edgeMode; |
| 9 | 17 |
| 10 SVGAnimatedString in1; | 18 SVGAnimatedString in1; |
| 11 | 19 |
| 12 SVGAnimatedNumberList kernelMatrix; | 20 SVGAnimatedNumberList kernelMatrix; |
| 13 | 21 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 38 SVGAnimatedLength y; | 46 SVGAnimatedLength y; |
| 39 | 47 |
| 40 // From SVGStylable | 48 // From SVGStylable |
| 41 | 49 |
| 42 SVGAnimatedString className; | 50 SVGAnimatedString className; |
| 43 | 51 |
| 44 CSSStyleDeclaration style; | 52 CSSStyleDeclaration style; |
| 45 | 53 |
| 46 CSSValue getPresentationAttribute(String name) native; | 54 CSSValue getPresentationAttribute(String name) native; |
| 47 } | 55 } |
| OLD | NEW |