| OLD | NEW |
| 1 | 1 |
| 2 class SVGSwitchElement extends SVGElement native "*SVGSwitchElement" { | 2 class SVGSwitchElement extends SVGElement native "*SVGSwitchElement" { |
| 3 | 3 |
| 4 // From SVGTests | 4 // From SVGTests |
| 5 | 5 |
| 6 SVGStringList requiredExtensions; | 6 SVGStringList get requiredExtensions() native "return this.requiredExtensions;
"; |
| 7 | 7 |
| 8 SVGStringList requiredFeatures; | 8 SVGStringList get requiredFeatures() native "return this.requiredFeatures;"; |
| 9 | 9 |
| 10 SVGStringList systemLanguage; | 10 SVGStringList get systemLanguage() native "return this.systemLanguage;"; |
| 11 | 11 |
| 12 bool hasExtension(String extension) native; | 12 bool hasExtension(String extension) native; |
| 13 | 13 |
| 14 // From SVGLangSpace | 14 // From SVGLangSpace |
| 15 | 15 |
| 16 String xmllang; | 16 String get xmllang() native "return this.xmllang;"; |
| 17 | 17 |
| 18 String xmlspace; | 18 void set xmllang(String value) native "this.xmllang = value;"; |
| 19 |
| 20 String get xmlspace() native "return this.xmlspace;"; |
| 21 |
| 22 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 19 | 23 |
| 20 // From SVGExternalResourcesRequired | 24 // From SVGExternalResourcesRequired |
| 21 | 25 |
| 22 SVGAnimatedBoolean externalResourcesRequired; | 26 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa
lResourcesRequired;"; |
| 23 | 27 |
| 24 // From SVGStylable | 28 // From SVGStylable |
| 25 | 29 |
| 26 SVGAnimatedString className; | 30 SVGAnimatedString get className() native "return this.className;"; |
| 27 | 31 |
| 28 CSSStyleDeclaration style; | 32 CSSStyleDeclaration get style() native "return this.style;"; |
| 29 | 33 |
| 30 CSSValue getPresentationAttribute(String name) native; | 34 CSSValue getPresentationAttribute(String name) native; |
| 31 | 35 |
| 32 // From SVGTransformable | 36 // From SVGTransformable |
| 33 | 37 |
| 34 SVGAnimatedTransformList transform; | 38 SVGAnimatedTransformList get transform() native "return this.transform;"; |
| 35 | 39 |
| 36 // From SVGLocatable | 40 // From SVGLocatable |
| 37 | 41 |
| 38 SVGElement farthestViewportElement; | 42 SVGElement get farthestViewportElement() native "return this.farthestViewportE
lement;"; |
| 39 | 43 |
| 40 SVGElement nearestViewportElement; | 44 SVGElement get nearestViewportElement() native "return this.nearestViewportEle
ment;"; |
| 41 | 45 |
| 42 SVGRect getBBox() native; | 46 SVGRect getBBox() native; |
| 43 | 47 |
| 44 SVGMatrix getCTM() native; | 48 SVGMatrix getCTM() native; |
| 45 | 49 |
| 46 SVGMatrix getScreenCTM() native; | 50 SVGMatrix getScreenCTM() native; |
| 47 | 51 |
| 48 SVGMatrix getTransformToElement(SVGElement element) native; | 52 SVGMatrix getTransformToElement(SVGElement element) native; |
| 49 } | 53 } |
| OLD | NEW |