| OLD | NEW |
| 1 | 1 |
| 2 class SVGSymbolElement extends SVGElement native "*SVGSymbolElement" { | 2 class SVGSymbolElement extends SVGElement native "*SVGSymbolElement" { |
| 3 | 3 |
| 4 // From SVGLangSpace | 4 // From SVGLangSpace |
| 5 | 5 |
| 6 String xmllang; | 6 String get xmllang() native "return this.xmllang;"; |
| 7 | 7 |
| 8 String xmlspace; | 8 void set xmllang(String value) native "this.xmllang = value;"; |
| 9 |
| 10 String get xmlspace() native "return this.xmlspace;"; |
| 11 |
| 12 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 9 | 13 |
| 10 // From SVGExternalResourcesRequired | 14 // From SVGExternalResourcesRequired |
| 11 | 15 |
| 12 SVGAnimatedBoolean externalResourcesRequired; | 16 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa
lResourcesRequired;"; |
| 13 | 17 |
| 14 // From SVGStylable | 18 // From SVGStylable |
| 15 | 19 |
| 16 SVGAnimatedString className; | 20 SVGAnimatedString get className() native "return this.className;"; |
| 17 | 21 |
| 18 CSSStyleDeclaration style; | 22 CSSStyleDeclaration get style() native "return this.style;"; |
| 19 | 23 |
| 20 CSSValue getPresentationAttribute(String name) native; | 24 CSSValue getPresentationAttribute(String name) native; |
| 21 | 25 |
| 22 // From SVGFitToViewBox | 26 // From SVGFitToViewBox |
| 23 | 27 |
| 24 SVGAnimatedPreserveAspectRatio preserveAspectRatio; | 28 SVGAnimatedPreserveAspectRatio get preserveAspectRatio() native "return this.p
reserveAspectRatio;"; |
| 25 | 29 |
| 26 SVGAnimatedRect viewBox; | 30 SVGAnimatedRect get viewBox() native "return this.viewBox;"; |
| 27 } | 31 } |
| OLD | NEW |