OLD | NEW |
1 | 1 |
2 class HTMLImageElementJs extends HTMLElementJs implements HTMLImageElement nativ
e "*HTMLImageElement" { | 2 class _HTMLImageElementJs extends _HTMLElementJs implements HTMLImageElement nat
ive "*HTMLImageElement" { |
3 | 3 |
4 String get align() native "return this.align;"; | 4 String get align() native "return this.align;"; |
5 | 5 |
6 void set align(String value) native "this.align = value;"; | 6 void set align(String value) native "this.align = value;"; |
7 | 7 |
8 String get alt() native "return this.alt;"; | 8 String get alt() native "return this.alt;"; |
9 | 9 |
10 void set alt(String value) native "this.alt = value;"; | 10 void set alt(String value) native "this.alt = value;"; |
11 | 11 |
12 String get border() native "return this.border;"; | 12 String get border() native "return this.border;"; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 void set vspace(int value) native "this.vspace = value;"; | 60 void set vspace(int value) native "this.vspace = value;"; |
61 | 61 |
62 int get width() native "return this.width;"; | 62 int get width() native "return this.width;"; |
63 | 63 |
64 void set width(int value) native "this.width = value;"; | 64 void set width(int value) native "this.width = value;"; |
65 | 65 |
66 int get x() native "return this.x;"; | 66 int get x() native "return this.x;"; |
67 | 67 |
68 int get y() native "return this.y;"; | 68 int get y() native "return this.y;"; |
69 } | 69 } |
OLD | NEW |