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

Side by Side Diff: client/html/generated/html/dartium/TableCellElement.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 _TableCellElementImpl extends _ElementImpl implements TableCellElement {
3 _TableCellElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get abbr() => _wrap(_ptr.abbr);
6
7 void set abbr(String value) { _ptr.abbr = _unwrap(value); }
8
9 String get align() => _wrap(_ptr.align);
10
11 void set align(String value) { _ptr.align = _unwrap(value); }
12
13 String get axis() => _wrap(_ptr.axis);
14
15 void set axis(String value) { _ptr.axis = _unwrap(value); }
16
17 String get bgColor() => _wrap(_ptr.bgColor);
18
19 void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
20
21 int get cellIndex() => _wrap(_ptr.cellIndex);
22
23 String get ch() => _wrap(_ptr.ch);
24
25 void set ch(String value) { _ptr.ch = _unwrap(value); }
26
27 String get chOff() => _wrap(_ptr.chOff);
28
29 void set chOff(String value) { _ptr.chOff = _unwrap(value); }
30
31 int get colSpan() => _wrap(_ptr.colSpan);
32
33 void set colSpan(int value) { _ptr.colSpan = _unwrap(value); }
34
35 String get headers() => _wrap(_ptr.headers);
36
37 void set headers(String value) { _ptr.headers = _unwrap(value); }
38
39 String get height() => _wrap(_ptr.height);
40
41 void set height(String value) { _ptr.height = _unwrap(value); }
42
43 bool get noWrap() => _wrap(_ptr.noWrap);
44
45 void set noWrap(bool value) { _ptr.noWrap = _unwrap(value); }
46
47 int get rowSpan() => _wrap(_ptr.rowSpan);
48
49 void set rowSpan(int value) { _ptr.rowSpan = _unwrap(value); }
50
51 String get scope() => _wrap(_ptr.scope);
52
53 void set scope(String value) { _ptr.scope = _unwrap(value); }
54
55 String get vAlign() => _wrap(_ptr.vAlign);
56
57 void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
58
59 String get width() => _wrap(_ptr.width);
60
61 void set width(String value) { _ptr.width = _unwrap(value); }
62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698