| OLD | NEW |
| 1 | 1 |
| 2 class SVGAElementJs extends SVGElementJs implements SVGAElement native "*SVGAEle
ment" { | 2 class _SVGAElementJs extends _SVGElementJs implements SVGAElement native "*SVGAE
lement" { |
| 3 | 3 |
| 4 SVGAnimatedStringJs get target() native "return this.target;"; | 4 _SVGAnimatedStringJs get target() native "return this.target;"; |
| 5 | 5 |
| 6 // From SVGURIReference | 6 // From SVGURIReference |
| 7 | 7 |
| 8 SVGAnimatedStringJs get href() native "return this.href;"; | 8 _SVGAnimatedStringJs get href() native "return this.href;"; |
| 9 | 9 |
| 10 // From SVGTests | 10 // From SVGTests |
| 11 | 11 |
| 12 SVGStringListJs get requiredExtensions() native "return this.requiredExtension
s;"; | 12 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio
ns;"; |
| 13 | 13 |
| 14 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; | 14 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"
; |
| 15 | 15 |
| 16 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; | 16 _SVGStringListJs 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 get xmllang() native "return this.xmllang;"; | 22 String get xmllang() native "return this.xmllang;"; |
| 23 | 23 |
| 24 void set xmllang(String value) native "this.xmllang = value;"; | 24 void set xmllang(String value) native "this.xmllang = value;"; |
| 25 | 25 |
| 26 String get xmlspace() native "return this.xmlspace;"; | 26 String get xmlspace() native "return this.xmlspace;"; |
| 27 | 27 |
| 28 void set xmlspace(String value) native "this.xmlspace = value;"; | 28 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 29 | 29 |
| 30 // From SVGExternalResourcesRequired | 30 // From SVGExternalResourcesRequired |
| 31 | 31 |
| 32 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 32 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; |
| 33 | 33 |
| 34 // From SVGStylable | 34 // From SVGStylable |
| 35 | 35 |
| 36 SVGAnimatedStringJs get className() native "return this.className;"; | 36 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 37 | 37 |
| 38 CSSStyleDeclarationJs get style() native "return this.style;"; | 38 _CSSStyleDeclarationJs get style() native "return this.style;"; |
| 39 | 39 |
| 40 CSSValueJs getPresentationAttribute(String name) native; | 40 _CSSValueJs getPresentationAttribute(String name) native; |
| 41 | 41 |
| 42 // From SVGTransformable | 42 // From SVGTransformable |
| 43 | 43 |
| 44 SVGAnimatedTransformListJs get transform() native "return this.transform;"; | 44 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; |
| 45 | 45 |
| 46 // From SVGLocatable | 46 // From SVGLocatable |
| 47 | 47 |
| 48 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor
tElement;"; | 48 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo
rtElement;"; |
| 49 | 49 |
| 50 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE
lement;"; | 50 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport
Element;"; |
| 51 | 51 |
| 52 SVGRectJs getBBox() native; | 52 _SVGRectJs getBBox() native; |
| 53 | 53 |
| 54 SVGMatrixJs getCTM() native; | 54 _SVGMatrixJs getCTM() native; |
| 55 | 55 |
| 56 SVGMatrixJs getScreenCTM() native; | 56 _SVGMatrixJs getScreenCTM() native; |
| 57 | 57 |
| 58 SVGMatrixJs getTransformToElement(SVGElementJs element) native; | 58 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 59 } | 59 } |
| OLD | NEW |