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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/TableSectionElement.dart
diff --git a/client/html/generated/html/dartium/TableSectionElement.dart b/client/html/generated/html/dartium/TableSectionElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..6bf4fe74e9cacf367bcc6cba36fd35a1d365323a
--- /dev/null
+++ b/client/html/generated/html/dartium/TableSectionElement.dart
@@ -0,0 +1,31 @@
+
+class _TableSectionElementImpl extends _ElementImpl implements TableSectionElement {
+ _TableSectionElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get align() => _wrap(_ptr.align);
+
+ void set align(String value) { _ptr.align = _unwrap(value); }
+
+ String get ch() => _wrap(_ptr.ch);
+
+ void set ch(String value) { _ptr.ch = _unwrap(value); }
+
+ String get chOff() => _wrap(_ptr.chOff);
+
+ void set chOff(String value) { _ptr.chOff = _unwrap(value); }
+
+ HTMLCollection get rows() => _wrap(_ptr.rows);
+
+ String get vAlign() => _wrap(_ptr.vAlign);
+
+ void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
+
+ void deleteRow(int index) {
+ _ptr.deleteRow(_unwrap(index));
+ return;
+ }
+
+ Element insertRow(int index) {
+ return _wrap(_ptr.insertRow(_unwrap(index)));
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698