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

Side by Side Diff: client/html/generated/html/dartium/ImageElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _ImageElementImpl extends _ElementImpl implements ImageElement {
3 _ImageElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get align() => _wrap(_ptr.align);
6
7 void set align(String value) { _ptr.align = _unwrap(value); }
8
9 String get alt() => _wrap(_ptr.alt);
10
11 void set alt(String value) { _ptr.alt = _unwrap(value); }
12
13 String get border() => _wrap(_ptr.border);
14
15 void set border(String value) { _ptr.border = _unwrap(value); }
16
17 bool get complete() => _wrap(_ptr.complete);
18
19 String get crossOrigin() => _wrap(_ptr.crossOrigin);
20
21 void set crossOrigin(String value) { _ptr.crossOrigin = _unwrap(value); }
22
23 int get height() => _wrap(_ptr.height);
24
25 void set height(int value) { _ptr.height = _unwrap(value); }
26
27 int get hspace() => _wrap(_ptr.hspace);
28
29 void set hspace(int value) { _ptr.hspace = _unwrap(value); }
30
31 bool get isMap() => _wrap(_ptr.isMap);
32
33 void set isMap(bool value) { _ptr.isMap = _unwrap(value); }
34
35 String get longDesc() => _wrap(_ptr.longDesc);
36
37 void set longDesc(String value) { _ptr.longDesc = _unwrap(value); }
38
39 String get lowsrc() => _wrap(_ptr.lowsrc);
40
41 void set lowsrc(String value) { _ptr.lowsrc = _unwrap(value); }
42
43 String get name() => _wrap(_ptr.name);
44
45 void set name(String value) { _ptr.name = _unwrap(value); }
46
47 int get naturalHeight() => _wrap(_ptr.naturalHeight);
48
49 int get naturalWidth() => _wrap(_ptr.naturalWidth);
50
51 String get src() => _wrap(_ptr.src);
52
53 void set src(String value) { _ptr.src = _unwrap(value); }
54
55 String get useMap() => _wrap(_ptr.useMap);
56
57 void set useMap(String value) { _ptr.useMap = _unwrap(value); }
58
59 int get vspace() => _wrap(_ptr.vspace);
60
61 void set vspace(int value) { _ptr.vspace = _unwrap(value); }
62
63 int get width() => _wrap(_ptr.width);
64
65 void set width(int value) { _ptr.width = _unwrap(value); }
66
67 int get x() => _wrap(_ptr.x);
68
69 int get y() => _wrap(_ptr.y);
70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698