| OLD | NEW |
| 1 | 1 |
| 2 class SVGFEImageElement extends SVGElement native "*SVGFEImageElement" { | 2 class SVGFEImageElement extends SVGElement native "*SVGFEImageElement" { |
| 3 | 3 |
| 4 SVGAnimatedPreserveAspectRatio preserveAspectRatio; | 4 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() native "return this.p
reserveAspectRatio;"; |
| 5 | 5 |
| 6 // From SVGURIReference | 6 // From SVGURIReference |
| 7 | 7 |
| 8 SVGAnimatedString href; | 8 SVGAnimatedString get href() native "return this.href;"; |
| 9 | 9 |
| 10 // From SVGLangSpace | 10 // From SVGLangSpace |
| 11 | 11 |
| 12 String xmllang; | 12 String get xmllang() native "return this.xmllang;"; |
| 13 | 13 |
| 14 String xmlspace; | 14 void set xmllang(String value) native "this.xmllang = value;"; |
| 15 |
| 16 String get xmlspace() native "return this.xmlspace;"; |
| 17 |
| 18 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 15 | 19 |
| 16 // From SVGExternalResourcesRequired | 20 // From SVGExternalResourcesRequired |
| 17 | 21 |
| 18 SVGAnimatedBoolean externalResourcesRequired; | 22 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa
lResourcesRequired;"; |
| 19 | 23 |
| 20 // From SVGFilterPrimitiveStandardAttributes | 24 // From SVGFilterPrimitiveStandardAttributes |
| 21 | 25 |
| 22 SVGAnimatedLength height; | 26 SVGAnimatedLength get height() native "return this.height;"; |
| 23 | 27 |
| 24 SVGAnimatedString result; | 28 SVGAnimatedString get result() native "return this.result;"; |
| 25 | 29 |
| 26 SVGAnimatedLength width; | 30 SVGAnimatedLength get width() native "return this.width;"; |
| 27 | 31 |
| 28 SVGAnimatedLength x; | 32 SVGAnimatedLength get x() native "return this.x;"; |
| 29 | 33 |
| 30 SVGAnimatedLength y; | 34 SVGAnimatedLength get y() native "return this.y;"; |
| 31 | 35 |
| 32 // From SVGStylable | 36 // From SVGStylable |
| 33 | 37 |
| 34 SVGAnimatedString className; | 38 SVGAnimatedString get className() native "return this.className;"; |
| 35 | 39 |
| 36 CSSStyleDeclaration style; | 40 CSSStyleDeclaration get style() native "return this.style;"; |
| 37 | 41 |
| 38 CSSValue getPresentationAttribute(String name) native; | 42 CSSValue getPresentationAttribute(String name) native; |
| 39 } | 43 } |
| OLD | NEW |