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