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

Side by Side Diff: client/html/generated/html/dartium/TableSectionElement.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 _TableSectionElementImpl extends _ElementImpl implements TableSectionEleme nt {
3 _TableSectionElementImpl._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 ch() => _wrap(_ptr.ch);
10
11 void set ch(String value) { _ptr.ch = _unwrap(value); }
12
13 String get chOff() => _wrap(_ptr.chOff);
14
15 void set chOff(String value) { _ptr.chOff = _unwrap(value); }
16
17 HTMLCollection get rows() => _wrap(_ptr.rows);
18
19 String get vAlign() => _wrap(_ptr.vAlign);
20
21 void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
22
23 void deleteRow(int index) {
24 _ptr.deleteRow(_unwrap(index));
25 return;
26 }
27
28 Element insertRow(int index) {
29 return _wrap(_ptr.insertRow(_unwrap(index)));
30 }
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698