| OLD | NEW |
| 1 | 1 |
| 2 class SVGPolygonElementJs extends SVGElementJs implements SVGPolygonElement nati
ve "*SVGPolygonElement" { | 2 class _SVGPolygonElementJs extends _SVGElementJs implements SVGPolygonElement na
tive "*SVGPolygonElement" { |
| 3 | 3 |
| 4 SVGPointListJs get animatedPoints() native "return this.animatedPoints;"; | 4 _SVGPointListJs get animatedPoints() native "return this.animatedPoints;"; |
| 5 | 5 |
| 6 SVGPointListJs get points() native "return this.points;"; | 6 _SVGPointListJs get points() native "return this.points;"; |
| 7 | 7 |
| 8 // From SVGTests | 8 // From SVGTests |
| 9 | 9 |
| 10 SVGStringListJs get requiredExtensions() native "return this.requiredExtension
s;"; | 10 _SVGStringListJs get requiredExtensions() native "return this.requiredExtensio
ns;"; |
| 11 | 11 |
| 12 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; | 12 _SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"
; |
| 13 | 13 |
| 14 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; | 14 _SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; |
| 15 | 15 |
| 16 bool hasExtension(String extension) native; | 16 bool hasExtension(String extension) native; |
| 17 | 17 |
| 18 // From SVGLangSpace | 18 // From SVGLangSpace |
| 19 | 19 |
| 20 String get xmllang() native "return this.xmllang;"; | 20 String get xmllang() native "return this.xmllang;"; |
| 21 | 21 |
| 22 void set xmllang(String value) native "this.xmllang = value;"; | 22 void set xmllang(String value) native "this.xmllang = value;"; |
| 23 | 23 |
| 24 String get xmlspace() native "return this.xmlspace;"; | 24 String get xmlspace() native "return this.xmlspace;"; |
| 25 | 25 |
| 26 void set xmlspace(String value) native "this.xmlspace = value;"; | 26 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 27 | 27 |
| 28 // From SVGExternalResourcesRequired | 28 // From SVGExternalResourcesRequired |
| 29 | 29 |
| 30 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 30 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; |
| 31 | 31 |
| 32 // From SVGStylable | 32 // From SVGStylable |
| 33 | 33 |
| 34 SVGAnimatedStringJs get className() native "return this.className;"; | 34 _SVGAnimatedStringJs get className() native "return this.className;"; |
| 35 | 35 |
| 36 CSSStyleDeclarationJs get style() native "return this.style;"; | 36 _CSSStyleDeclarationJs get style() native "return this.style;"; |
| 37 | 37 |
| 38 CSSValueJs getPresentationAttribute(String name) native; | 38 _CSSValueJs getPresentationAttribute(String name) native; |
| 39 | 39 |
| 40 // From SVGTransformable | 40 // From SVGTransformable |
| 41 | 41 |
| 42 SVGAnimatedTransformListJs get transform() native "return this.transform;"; | 42 _SVGAnimatedTransformListJs get transform() native "return this.transform;"; |
| 43 | 43 |
| 44 // From SVGLocatable | 44 // From SVGLocatable |
| 45 | 45 |
| 46 SVGElementJs get farthestViewportElement() native "return this.farthestViewpor
tElement;"; | 46 _SVGElementJs get farthestViewportElement() native "return this.farthestViewpo
rtElement;"; |
| 47 | 47 |
| 48 SVGElementJs get nearestViewportElement() native "return this.nearestViewportE
lement;"; | 48 _SVGElementJs get nearestViewportElement() native "return this.nearestViewport
Element;"; |
| 49 | 49 |
| 50 SVGRectJs getBBox() native; | 50 _SVGRectJs getBBox() native; |
| 51 | 51 |
| 52 SVGMatrixJs getCTM() native; | 52 _SVGMatrixJs getCTM() native; |
| 53 | 53 |
| 54 SVGMatrixJs getScreenCTM() native; | 54 _SVGMatrixJs getScreenCTM() native; |
| 55 | 55 |
| 56 SVGMatrixJs getTransformToElement(SVGElementJs element) native; | 56 _SVGMatrixJs getTransformToElement(_SVGElementJs element) native; |
| 57 } | 57 } |
| OLD | NEW |