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 interface ImageElement extends Element { | |
8 | |
9 String get align(); | |
10 | |
11 void set align(String value); | |
12 | |
13 String get alt(); | |
14 | |
15 void set alt(String value); | |
16 | |
17 String get border(); | |
18 | |
19 void set border(String value); | |
20 | |
21 bool get complete(); | |
22 | |
23 String get crossOrigin(); | |
24 | |
25 void set crossOrigin(String value); | |
26 | |
27 int get height(); | |
28 | |
29 void set height(int value); | |
30 | |
31 int get hspace(); | |
32 | |
33 void set hspace(int value); | |
34 | |
35 bool get isMap(); | |
36 | |
37 void set isMap(bool value); | |
38 | |
39 String get longDesc(); | |
40 | |
41 void set longDesc(String value); | |
42 | |
43 String get lowsrc(); | |
44 | |
45 void set lowsrc(String value); | |
46 | |
47 String get name(); | |
48 | |
49 void set name(String value); | |
50 | |
51 int get naturalHeight(); | |
52 | |
53 int get naturalWidth(); | |
54 | |
55 String get src(); | |
56 | |
57 void set src(String value); | |
58 | |
59 String get useMap(); | |
60 | |
61 void set useMap(String value); | |
62 | |
63 int get vspace(); | |
64 | |
65 void set vspace(int value); | |
66 | |
67 int get width(); | |
68 | |
69 void set width(int value); | |
70 | |
71 int get x(); | |
72 | |
73 int get y(); | |
74 } | |
OLD | NEW |