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

Unified 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, 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/TableRowElement.dart
diff --git a/client/html/generated/html/dartium/TableRowElement.dart b/client/html/generated/html/dartium/TableRowElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9cc95482b0a700e4c96a191eb5f7b131c7c1ad88
--- /dev/null
+++ b/client/html/generated/html/dartium/TableRowElement.dart
@@ -0,0 +1,39 @@
+
+class _TableRowElementImpl extends _ElementImpl implements TableRowElement {
+ _TableRowElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get align() => _wrap(_ptr.align);
+
+ void set align(String value) { _ptr.align = _unwrap(value); }
+
+ String get bgColor() => _wrap(_ptr.bgColor);
+
+ void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
+
+ HTMLCollection get cells() => _wrap(_ptr.cells);
+
+ 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); }
+
+ int get rowIndex() => _wrap(_ptr.rowIndex);
+
+ int get sectionRowIndex() => _wrap(_ptr.sectionRowIndex);
+
+ String get vAlign() => _wrap(_ptr.vAlign);
+
+ void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
+
+ void deleteCell(int index) {
+ _ptr.deleteCell(_unwrap(index));
+ return;
+ }
+
+ Element insertCell(int index) {
+ return _wrap(_ptr.insertCell(_unwrap(index)));
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698