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

Side by Side Diff: client/html/generated/html/dartium/TableRowElement.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 _TableRowElementImpl extends _ElementImpl implements TableRowElement {
3 _TableRowElementImpl._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 bgColor() => _wrap(_ptr.bgColor);
10
11 void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
12
13 HTMLCollection get cells() => _wrap(_ptr.cells);
14
15 String get ch() => _wrap(_ptr.ch);
16
17 void set ch(String value) { _ptr.ch = _unwrap(value); }
18
19 String get chOff() => _wrap(_ptr.chOff);
20
21 void set chOff(String value) { _ptr.chOff = _unwrap(value); }
22
23 int get rowIndex() => _wrap(_ptr.rowIndex);
24
25 int get sectionRowIndex() => _wrap(_ptr.sectionRowIndex);
26
27 String get vAlign() => _wrap(_ptr.vAlign);
28
29 void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
30
31 void deleteCell(int index) {
32 _ptr.deleteCell(_unwrap(index));
33 return;
34 }
35
36 Element insertCell(int index) {
37 return _wrap(_ptr.insertCell(_unwrap(index)));
38 }
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698