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

Unified 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, 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/TableCellElement.dart
diff --git a/client/html/generated/html/dartium/TableCellElement.dart b/client/html/generated/html/dartium/TableCellElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..908f9c3ee54ce58b0efb03fbfd81ef663027f453
--- /dev/null
+++ b/client/html/generated/html/dartium/TableCellElement.dart
@@ -0,0 +1,62 @@
+
+class _TableCellElementImpl extends _ElementImpl implements TableCellElement {
+ _TableCellElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get abbr() => _wrap(_ptr.abbr);
+
+ void set abbr(String value) { _ptr.abbr = _unwrap(value); }
+
+ String get align() => _wrap(_ptr.align);
+
+ void set align(String value) { _ptr.align = _unwrap(value); }
+
+ String get axis() => _wrap(_ptr.axis);
+
+ void set axis(String value) { _ptr.axis = _unwrap(value); }
+
+ String get bgColor() => _wrap(_ptr.bgColor);
+
+ void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
+
+ int get cellIndex() => _wrap(_ptr.cellIndex);
+
+ 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 colSpan() => _wrap(_ptr.colSpan);
+
+ void set colSpan(int value) { _ptr.colSpan = _unwrap(value); }
+
+ String get headers() => _wrap(_ptr.headers);
+
+ void set headers(String value) { _ptr.headers = _unwrap(value); }
+
+ String get height() => _wrap(_ptr.height);
+
+ void set height(String value) { _ptr.height = _unwrap(value); }
+
+ bool get noWrap() => _wrap(_ptr.noWrap);
+
+ void set noWrap(bool value) { _ptr.noWrap = _unwrap(value); }
+
+ int get rowSpan() => _wrap(_ptr.rowSpan);
+
+ void set rowSpan(int value) { _ptr.rowSpan = _unwrap(value); }
+
+ String get scope() => _wrap(_ptr.scope);
+
+ void set scope(String value) { _ptr.scope = _unwrap(value); }
+
+ String get vAlign() => _wrap(_ptr.vAlign);
+
+ void set vAlign(String value) { _ptr.vAlign = _unwrap(value); }
+
+ String get width() => _wrap(_ptr.width);
+
+ void set width(String value) { _ptr.width = _unwrap(value); }
+}

Powered by Google App Engine
This is Rietveld 408576698