| 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 _HTMLImageElementWrappingImplementation extends _HTMLElementWrappingImplem
entation implements HTMLImageElement { | |
| 8 _HTMLImageElementWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__HTMLImageElementWrappingImplementation() native { | |
| 11 return new _HTMLImageElementWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 String get align() { return _get_align(this); } | |
| 15 static String _get_align(var _this) native; | |
| 16 | |
| 17 void set align(String value) { _set_align(this, value); } | |
| 18 static void _set_align(var _this, String value) native; | |
| 19 | |
| 20 String get alt() { return _get_alt(this); } | |
| 21 static String _get_alt(var _this) native; | |
| 22 | |
| 23 void set alt(String value) { _set_alt(this, value); } | |
| 24 static void _set_alt(var _this, String value) native; | |
| 25 | |
| 26 String get border() { return _get_border(this); } | |
| 27 static String _get_border(var _this) native; | |
| 28 | |
| 29 void set border(String value) { _set_border(this, value); } | |
| 30 static void _set_border(var _this, String value) native; | |
| 31 | |
| 32 bool get complete() { return _get_complete(this); } | |
| 33 static bool _get_complete(var _this) native; | |
| 34 | |
| 35 String get crossOrigin() { return _get_crossOrigin(this); } | |
| 36 static String _get_crossOrigin(var _this) native; | |
| 37 | |
| 38 void set crossOrigin(String value) { _set_crossOrigin(this, value); } | |
| 39 static void _set_crossOrigin(var _this, String value) native; | |
| 40 | |
| 41 int get height() { return _get_height(this); } | |
| 42 static int _get_height(var _this) native; | |
| 43 | |
| 44 void set height(int value) { _set_height(this, value); } | |
| 45 static void _set_height(var _this, int value) native; | |
| 46 | |
| 47 int get hspace() { return _get_hspace(this); } | |
| 48 static int _get_hspace(var _this) native; | |
| 49 | |
| 50 void set hspace(int value) { _set_hspace(this, value); } | |
| 51 static void _set_hspace(var _this, int value) native; | |
| 52 | |
| 53 bool get isMap() { return _get_isMap(this); } | |
| 54 static bool _get_isMap(var _this) native; | |
| 55 | |
| 56 void set isMap(bool value) { _set_isMap(this, value); } | |
| 57 static void _set_isMap(var _this, bool value) native; | |
| 58 | |
| 59 String get longDesc() { return _get_longDesc(this); } | |
| 60 static String _get_longDesc(var _this) native; | |
| 61 | |
| 62 void set longDesc(String value) { _set_longDesc(this, value); } | |
| 63 static void _set_longDesc(var _this, String value) native; | |
| 64 | |
| 65 String get lowsrc() { return _get_lowsrc(this); } | |
| 66 static String _get_lowsrc(var _this) native; | |
| 67 | |
| 68 void set lowsrc(String value) { _set_lowsrc(this, value); } | |
| 69 static void _set_lowsrc(var _this, String value) native; | |
| 70 | |
| 71 String get name() { return _get_name(this); } | |
| 72 static String _get_name(var _this) native; | |
| 73 | |
| 74 void set name(String value) { _set_name(this, value); } | |
| 75 static void _set_name(var _this, String value) native; | |
| 76 | |
| 77 int get naturalHeight() { return _get_naturalHeight(this); } | |
| 78 static int _get_naturalHeight(var _this) native; | |
| 79 | |
| 80 int get naturalWidth() { return _get_naturalWidth(this); } | |
| 81 static int _get_naturalWidth(var _this) native; | |
| 82 | |
| 83 String get src() { return _get_src(this); } | |
| 84 static String _get_src(var _this) native; | |
| 85 | |
| 86 void set src(String value) { _set_src(this, value); } | |
| 87 static void _set_src(var _this, String value) native; | |
| 88 | |
| 89 String get useMap() { return _get_useMap(this); } | |
| 90 static String _get_useMap(var _this) native; | |
| 91 | |
| 92 void set useMap(String value) { _set_useMap(this, value); } | |
| 93 static void _set_useMap(var _this, String value) native; | |
| 94 | |
| 95 int get vspace() { return _get_vspace(this); } | |
| 96 static int _get_vspace(var _this) native; | |
| 97 | |
| 98 void set vspace(int value) { _set_vspace(this, value); } | |
| 99 static void _set_vspace(var _this, int value) native; | |
| 100 | |
| 101 int get width() { return _get_width(this); } | |
| 102 static int _get_width(var _this) native; | |
| 103 | |
| 104 void set width(int value) { _set_width(this, value); } | |
| 105 static void _set_width(var _this, int value) native; | |
| 106 | |
| 107 int get x() { return _get_x(this); } | |
| 108 static int _get_x(var _this) native; | |
| 109 | |
| 110 int get y() { return _get_y(this); } | |
| 111 static int _get_y(var _this) native; | |
| 112 | |
| 113 String get typeName() { return "HTMLImageElement"; } | |
| 114 } | |
| OLD | NEW |