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

Unified Diff: client/html/generated/html/frog/TableElement.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/frog/TableElement.dart
diff --git a/client/html/generated/html/frog/TableElement.dart b/client/html/generated/html/frog/TableElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c3efa9607eaa5cff9bba7692e5bd0e6712da19aa
--- /dev/null
+++ b/client/html/generated/html/frog/TableElement.dart
@@ -0,0 +1,47 @@
+
+class _TableElementImpl extends _ElementImpl implements TableElement native "*HTMLTableElement" {
+
+ String align;
+
+ String bgColor;
+
+ String border;
+
+ _TableCaptionElementImpl caption;
+
+ String cellPadding;
+
+ String cellSpacing;
+
+ String frame;
+
+ final _HTMLCollectionImpl rows;
+
+ String rules;
+
+ String summary;
+
+ final _HTMLCollectionImpl tBodies;
+
+ _TableSectionElementImpl tFoot;
+
+ _TableSectionElementImpl tHead;
+
+ String width;
+
+ _ElementImpl createCaption() native;
+
+ _ElementImpl createTFoot() native;
+
+ _ElementImpl createTHead() native;
+
+ void deleteCaption() native;
+
+ void deleteRow(int index) native;
+
+ void deleteTFoot() native;
+
+ void deleteTHead() native;
+
+ _ElementImpl insertRow(int index) native;
+}

Powered by Google App Engine
This is Rietveld 408576698