| OLD | NEW |
| 1 | 1 |
| 2 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { | 2 class SVGFECompositeElement extends SVGElement native "*SVGFECompositeElement" { |
| 3 | 3 |
| 4 static final int SVG_FECOMPOSITE_OPERATOR_ARITHMETIC = 6; |
| 5 |
| 6 static final int SVG_FECOMPOSITE_OPERATOR_ATOP = 4; |
| 7 |
| 8 static final int SVG_FECOMPOSITE_OPERATOR_IN = 2; |
| 9 |
| 10 static final int SVG_FECOMPOSITE_OPERATOR_OUT = 3; |
| 11 |
| 12 static final int SVG_FECOMPOSITE_OPERATOR_OVER = 1; |
| 13 |
| 14 static final int SVG_FECOMPOSITE_OPERATOR_UNKNOWN = 0; |
| 15 |
| 16 static final int SVG_FECOMPOSITE_OPERATOR_XOR = 5; |
| 17 |
| 4 SVGAnimatedString in1; | 18 SVGAnimatedString in1; |
| 5 | 19 |
| 6 SVGAnimatedString in2; | 20 SVGAnimatedString in2; |
| 7 | 21 |
| 8 SVGAnimatedNumber k1; | 22 SVGAnimatedNumber k1; |
| 9 | 23 |
| 10 SVGAnimatedNumber k2; | 24 SVGAnimatedNumber k2; |
| 11 | 25 |
| 12 SVGAnimatedNumber k3; | 26 SVGAnimatedNumber k3; |
| 13 | 27 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 28 SVGAnimatedLength y; | 42 SVGAnimatedLength y; |
| 29 | 43 |
| 30 // From SVGStylable | 44 // From SVGStylable |
| 31 | 45 |
| 32 SVGAnimatedString className; | 46 SVGAnimatedString className; |
| 33 | 47 |
| 34 CSSStyleDeclaration style; | 48 CSSStyleDeclaration style; |
| 35 | 49 |
| 36 CSSValue getPresentationAttribute(String name) native; | 50 CSSValue getPresentationAttribute(String name) native; |
| 37 } | 51 } |
| OLD | NEW |