| OLD | NEW |
| 1 | 1 |
| 2 class SVGFETurbulenceElement extends SVGElement native "*SVGFETurbulenceElement"
{ | 2 class SVGFETurbulenceElement extends SVGElement native "*SVGFETurbulenceElement"
{ |
| 3 | 3 |
| 4 static final int SVG_STITCHTYPE_NOSTITCH = 2; |
| 5 |
| 6 static final int SVG_STITCHTYPE_STITCH = 1; |
| 7 |
| 8 static final int SVG_STITCHTYPE_UNKNOWN = 0; |
| 9 |
| 10 static final int SVG_TURBULENCE_TYPE_FRACTALNOISE = 1; |
| 11 |
| 12 static final int SVG_TURBULENCE_TYPE_TURBULENCE = 2; |
| 13 |
| 14 static final int SVG_TURBULENCE_TYPE_UNKNOWN = 0; |
| 15 |
| 4 SVGAnimatedNumber baseFrequencyX; | 16 SVGAnimatedNumber baseFrequencyX; |
| 5 | 17 |
| 6 SVGAnimatedNumber baseFrequencyY; | 18 SVGAnimatedNumber baseFrequencyY; |
| 7 | 19 |
| 8 SVGAnimatedInteger numOctaves; | 20 SVGAnimatedInteger numOctaves; |
| 9 | 21 |
| 10 SVGAnimatedNumber seed; | 22 SVGAnimatedNumber seed; |
| 11 | 23 |
| 12 SVGAnimatedEnumeration stitchTiles; | 24 SVGAnimatedEnumeration stitchTiles; |
| 13 | 25 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 26 SVGAnimatedLength y; | 38 SVGAnimatedLength y; |
| 27 | 39 |
| 28 // From SVGStylable | 40 // From SVGStylable |
| 29 | 41 |
| 30 SVGAnimatedString className; | 42 SVGAnimatedString className; |
| 31 | 43 |
| 32 CSSStyleDeclaration style; | 44 CSSStyleDeclaration style; |
| 33 | 45 |
| 34 CSSValue getPresentationAttribute(String name) native; | 46 CSSValue getPresentationAttribute(String name) native; |
| 35 } | 47 } |
| OLD | NEW |