| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 2 // for details. All rights reserved. Use of this source code is governed by a | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 class _SVGMaskElementWrappingImplementation extends _SVGElementWrappingImplement
ation implements SVGMaskElement { | |
| 8 _SVGMaskElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__SVGMaskElementWrappingImplementation() native { | |
| 11 return new _SVGMaskElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 SVGAnimatedLength get height() { return _get_height(this); } | |
| 15 static SVGAnimatedLength _get_height(var _this) native; | |
| 16 | |
| 17 SVGAnimatedEnumeration get maskContentUnits() { return _get_maskContentUnits(t
his); } | |
| 18 static SVGAnimatedEnumeration _get_maskContentUnits(var _this) native; | |
| 19 | |
| 20 SVGAnimatedEnumeration get maskUnits() { return _get_maskUnits(this); } | |
| 21 static SVGAnimatedEnumeration _get_maskUnits(var _this) native; | |
| 22 | |
| 23 SVGAnimatedLength get width() { return _get_width(this); } | |
| 24 static SVGAnimatedLength _get_width(var _this) native; | |
| 25 | |
| 26 SVGAnimatedLength get x() { return _get_x(this); } | |
| 27 static SVGAnimatedLength _get_x(var _this) native; | |
| 28 | |
| 29 SVGAnimatedLength get y() { return _get_y(this); } | |
| 30 static SVGAnimatedLength _get_y(var _this) native; | |
| 31 | |
| 32 // From SVGTests | |
| 33 | |
| 34 SVGStringList get requiredExtensions() { return _get_requiredExtensions(this);
} | |
| 35 static SVGStringList _get_requiredExtensions(var _this) native; | |
| 36 | |
| 37 SVGStringList get requiredFeatures() { return _get_requiredFeatures(this); } | |
| 38 static SVGStringList _get_requiredFeatures(var _this) native; | |
| 39 | |
| 40 SVGStringList get systemLanguage() { return _get_systemLanguage(this); } | |
| 41 static SVGStringList _get_systemLanguage(var _this) native; | |
| 42 | |
| 43 bool hasExtension(String extension) { | |
| 44 return _hasExtension(this, extension); | |
| 45 } | |
| 46 static bool _hasExtension(receiver, extension) native; | |
| 47 | |
| 48 // From SVGLangSpace | |
| 49 | |
| 50 String get xmllang() { return _get_xmllang(this); } | |
| 51 static String _get_xmllang(var _this) native; | |
| 52 | |
| 53 void set xmllang(String value) { _set_xmllang(this, value); } | |
| 54 static void _set_xmllang(var _this, String value) native; | |
| 55 | |
| 56 String get xmlspace() { return _get_xmlspace(this); } | |
| 57 static String _get_xmlspace(var _this) native; | |
| 58 | |
| 59 void set xmlspace(String value) { _set_xmlspace(this, value); } | |
| 60 static void _set_xmlspace(var _this, String value) native; | |
| 61 | |
| 62 // From SVGExternalResourcesRequired | |
| 63 | |
| 64 SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResou
rcesRequired(this); } | |
| 65 static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native; | |
| 66 | |
| 67 // From SVGStylable | |
| 68 | |
| 69 SVGAnimatedString get className() { return _get_className(this); } | |
| 70 static SVGAnimatedString _get_className(var _this) native; | |
| 71 | |
| 72 CSSStyleDeclaration get style() { return _get_style_SVGMaskElement(this); } | |
| 73 static CSSStyleDeclaration _get_style_SVGMaskElement(var _this) native; | |
| 74 | |
| 75 CSSValue getPresentationAttribute(String name) { | |
| 76 return _getPresentationAttribute(this, name); | |
| 77 } | |
| 78 static CSSValue _getPresentationAttribute(receiver, name) native; | |
| 79 | |
| 80 String get typeName() { return "SVGMaskElement"; } | |
| 81 } | |
| OLD | NEW |