OLD | NEW |
1 | 1 |
2 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na
tive "*SVGFEImageElement" { | 2 class _SVGFEImageElementJs extends _SVGElementJs implements SVGFEImageElement na
tive "*SVGFEImageElement" { |
3 | 3 |
4 _SVGAnimatedPreserveAspectRatioJs get preserveAspectRatio() native "return thi
s.preserveAspectRatio;"; | 4 final _SVGAnimatedPreserveAspectRatioJs preserveAspectRatio; |
5 | 5 |
6 // From SVGURIReference | 6 // From SVGURIReference |
7 | 7 |
8 _SVGAnimatedStringJs get href() native "return this.href;"; | 8 final _SVGAnimatedStringJs href; |
9 | 9 |
10 // From SVGLangSpace | 10 // From SVGLangSpace |
11 | 11 |
12 String get xmllang() native "return this.xmllang;"; | 12 String xmllang; |
13 | 13 |
14 void set xmllang(String value) native "this.xmllang = value;"; | 14 String xmlspace; |
15 | |
16 String get xmlspace() native "return this.xmlspace;"; | |
17 | |
18 void set xmlspace(String value) native "this.xmlspace = value;"; | |
19 | 15 |
20 // From SVGExternalResourcesRequired | 16 // From SVGExternalResourcesRequired |
21 | 17 |
22 _SVGAnimatedBooleanJs get externalResourcesRequired() native "return this.exte
rnalResourcesRequired;"; | 18 final _SVGAnimatedBooleanJs externalResourcesRequired; |
23 | 19 |
24 // From SVGFilterPrimitiveStandardAttributes | 20 // From SVGFilterPrimitiveStandardAttributes |
25 | 21 |
26 _SVGAnimatedLengthJs get height() native "return this.height;"; | 22 final _SVGAnimatedLengthJs height; |
27 | 23 |
28 _SVGAnimatedStringJs get result() native "return this.result;"; | 24 final _SVGAnimatedStringJs result; |
29 | 25 |
30 _SVGAnimatedLengthJs get width() native "return this.width;"; | 26 final _SVGAnimatedLengthJs width; |
31 | 27 |
32 _SVGAnimatedLengthJs get x() native "return this.x;"; | 28 final _SVGAnimatedLengthJs x; |
33 | 29 |
34 _SVGAnimatedLengthJs get y() native "return this.y;"; | 30 final _SVGAnimatedLengthJs y; |
35 | 31 |
36 // From SVGStylable | 32 // From SVGStylable |
37 | 33 |
38 _SVGAnimatedStringJs get className() native "return this.className;"; | 34 final _SVGAnimatedStringJs className; |
39 | 35 |
40 _CSSStyleDeclarationJs get style() native "return this.style;"; | 36 final _CSSStyleDeclarationJs style; |
41 | 37 |
42 _CSSValueJs getPresentationAttribute(String name) native; | 38 _CSSValueJs getPresentationAttribute(String name) native; |
43 } | 39 } |
OLD | NEW |