Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: client/dom/generated/src/interface/HTMLImageElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface HTMLImageElement extends HTMLElement { 7 interface HTMLImageElement extends HTMLElement {
8 8
9 String get align(); 9 String align;
10 10
11 void set align(String value); 11 String alt;
12 12
13 String get alt(); 13 String border;
14 14
15 void set alt(String value); 15 final bool complete;
16 16
17 String get border(); 17 String crossOrigin;
18 18
19 void set border(String value); 19 int height;
20 20
21 bool get complete(); 21 int hspace;
22 22
23 String get crossOrigin(); 23 bool isMap;
24 24
25 void set crossOrigin(String value); 25 String longDesc;
26 26
27 int get height(); 27 String lowsrc;
28 28
29 void set height(int value); 29 String name;
30 30
31 int get hspace(); 31 final int naturalHeight;
32 32
33 void set hspace(int value); 33 final int naturalWidth;
34 34
35 bool get isMap(); 35 String src;
36 36
37 void set isMap(bool value); 37 String useMap;
38 38
39 String get longDesc(); 39 int vspace;
40 40
41 void set longDesc(String value); 41 int width;
42 42
43 String get lowsrc(); 43 final int x;
44 44
45 void set lowsrc(String value); 45 final int y;
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 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698