| OLD | NEW |
| 1 | 1 |
| 2 class SVGPatternElementJS extends SVGElementJS implements SVGPatternElement nati
ve "*SVGPatternElement" { | 2 class SVGPatternElementJs extends SVGElementJs implements SVGPatternElement nati
ve "*SVGPatternElement" { |
| 3 | 3 |
| 4 SVGAnimatedLengthJS get height() native "return this.height;"; | 4 SVGAnimatedLengthJs get height() native "return this.height;"; |
| 5 | 5 |
| 6 SVGAnimatedEnumerationJS get patternContentUnits() native "return this.pattern
ContentUnits;"; | 6 SVGAnimatedEnumerationJs get patternContentUnits() native "return this.pattern
ContentUnits;"; |
| 7 | 7 |
| 8 SVGAnimatedTransformListJS get patternTransform() native "return this.patternT
ransform;"; | 8 SVGAnimatedTransformListJs get patternTransform() native "return this.patternT
ransform;"; |
| 9 | 9 |
| 10 SVGAnimatedEnumerationJS get patternUnits() native "return this.patternUnits;"
; | 10 SVGAnimatedEnumerationJs get patternUnits() native "return this.patternUnits;"
; |
| 11 | 11 |
| 12 SVGAnimatedLengthJS get width() native "return this.width;"; | 12 SVGAnimatedLengthJs get width() native "return this.width;"; |
| 13 | 13 |
| 14 SVGAnimatedLengthJS get x() native "return this.x;"; | 14 SVGAnimatedLengthJs get x() native "return this.x;"; |
| 15 | 15 |
| 16 SVGAnimatedLengthJS get y() native "return this.y;"; | 16 SVGAnimatedLengthJs get y() native "return this.y;"; |
| 17 | 17 |
| 18 // From SVGURIReference | 18 // From SVGURIReference |
| 19 | 19 |
| 20 SVGAnimatedStringJS get href() native "return this.href;"; | 20 SVGAnimatedStringJs get href() native "return this.href;"; |
| 21 | 21 |
| 22 // From SVGTests | 22 // From SVGTests |
| 23 | 23 |
| 24 SVGStringListJS get requiredExtensions() native "return this.requiredExtension
s;"; | 24 SVGStringListJs get requiredExtensions() native "return this.requiredExtension
s;"; |
| 25 | 25 |
| 26 SVGStringListJS get requiredFeatures() native "return this.requiredFeatures;"; | 26 SVGStringListJs get requiredFeatures() native "return this.requiredFeatures;"; |
| 27 | 27 |
| 28 SVGStringListJS get systemLanguage() native "return this.systemLanguage;"; | 28 SVGStringListJs get systemLanguage() native "return this.systemLanguage;"; |
| 29 | 29 |
| 30 bool hasExtension(String extension) native; | 30 bool hasExtension(String extension) native; |
| 31 | 31 |
| 32 // From SVGLangSpace | 32 // From SVGLangSpace |
| 33 | 33 |
| 34 String get xmllang() native "return this.xmllang;"; | 34 String get xmllang() native "return this.xmllang;"; |
| 35 | 35 |
| 36 void set xmllang(String value) native "this.xmllang = value;"; | 36 void set xmllang(String value) native "this.xmllang = value;"; |
| 37 | 37 |
| 38 String get xmlspace() native "return this.xmlspace;"; | 38 String get xmlspace() native "return this.xmlspace;"; |
| 39 | 39 |
| 40 void set xmlspace(String value) native "this.xmlspace = value;"; | 40 void set xmlspace(String value) native "this.xmlspace = value;"; |
| 41 | 41 |
| 42 // From SVGExternalResourcesRequired | 42 // From SVGExternalResourcesRequired |
| 43 | 43 |
| 44 SVGAnimatedBooleanJS get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; | 44 SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exter
nalResourcesRequired;"; |
| 45 | 45 |
| 46 // From SVGStylable | 46 // From SVGStylable |
| 47 | 47 |
| 48 SVGAnimatedStringJS get className() native "return this.className;"; | 48 SVGAnimatedStringJs get className() native "return this.className;"; |
| 49 | 49 |
| 50 CSSStyleDeclarationJS get style() native "return this.style;"; | 50 CSSStyleDeclarationJs get style() native "return this.style;"; |
| 51 | 51 |
| 52 CSSValueJS getPresentationAttribute(String name) native; | 52 CSSValueJs getPresentationAttribute(String name) native; |
| 53 | 53 |
| 54 // From SVGFitToViewBox | 54 // From SVGFitToViewBox |
| 55 | 55 |
| 56 SVGAnimatedPreserveAspectRatioJS get preserveAspectRatio() native "return this
.preserveAspectRatio;"; | 56 SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return this
.preserveAspectRatio;"; |
| 57 | 57 |
| 58 SVGAnimatedRectJS get viewBox() native "return this.viewBox;"; | 58 SVGAnimatedRectJs get viewBox() native "return this.viewBox;"; |
| 59 } | 59 } |
| OLD | NEW |