| OLD | NEW |
| 1 | 1 |
| 2 class SVGCircleElement extends SVGElement native "*SVGCircleElement" { | 2 class SVGCircleElementJS extends SVGElementJS implements SVGCircleElement native
"*SVGCircleElement" { |
| 3 | 3 |
| 4 SVGAnimatedLength get cx() native "return this.cx;"; | 4 SVGAnimatedLengthJS get cx() native "return this.cx;"; |
| 5 | 5 |
| 6 SVGAnimatedLength get cy() native "return this.cy;"; | 6 SVGAnimatedLengthJS get cy() native "return this.cy;"; |
| 7 | 7 |
| 8 SVGAnimatedLength get r() native "return this.r;"; | 8 SVGAnimatedLengthJS get r() native "return this.r;"; |
| 9 | 9 |
| 10 // From SVGTests | 10 // From SVGTests |
| 11 | 11 |
| 12 SVGStringList get requiredExtensions() native "return this.requiredExtensions;
"; | 12 SVGStringListJS get requiredExtensions() native "return this.requiredExtension
s;"; |
| 13 | 13 |
| 14 SVGStringList get requiredFeatures() native "return this.requiredFeatures;"; | 14 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;"; |
| 15 | 15 |
| 16 SVGStringList 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 SVGAnimatedBoolean get externalResourcesRequired() native "return this.externa
lResourcesRequired;"; | 32 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; |
| 33 | 33 |
| 34 // From SVGStylable | 34 // From SVGStylable |
| 35 | 35 |
| 36 SVGAnimatedString get className() native "return this.className;"; | 36 SVGAnimatedStringJS get className() native "return this.className;"; |
| 37 | 37 |
| 38 CSSStyleDeclaration get style() native "return this.style;"; | 38 CSSStyleDeclarationJS get style() native "return this.style;"; |
| 39 | 39 |
| 40 CSSValue getPresentationAttribute(String name) native; | 40 CSSValueJS getPresentationAttribute(String name) native; |
| 41 | 41 |
| 42 // From SVGTransformable | 42 // From SVGTransformable |
| 43 | 43 |
| 44 SVGAnimatedTransformList 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 SVGElement get farthestViewportElement() native "return this.farthestViewportE
lement;"; | 48 SVGElementJS get farthestViewportElement() native "return this.farthestViewpor
tElement;"; |
| 49 | 49 |
| 50 SVGElement get nearestViewportElement() native "return this.nearestViewportEle
ment;"; | 50 SVGElementJS get nearestViewportElement() native "return this.nearestViewportE
lement;"; |
| 51 | 51 |
| 52 SVGRect getBBox() native; | 52 SVGRectJS getBBox() native; |
| 53 | 53 |
| 54 SVGMatrix getCTM() native; | 54 SVGMatrixJS getCTM() native; |
| 55 | 55 |
| 56 SVGMatrix getScreenCTM() native; | 56 SVGMatrixJS getScreenCTM() native; |
| 57 | 57 |
| 58 SVGMatrix getTransformToElement(SVGElement element) native; | 58 SVGMatrixJS getTransformToElement(SVGElementJS element) native; |
| 59 } | 59 } |
| OLD | NEW |