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

Unified Diff: client/dom/generated/src/frog/HTMLTableElement.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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/dom/generated/src/frog/HTMLTableElement.dart
diff --git a/client/dom/generated/src/frog/HTMLTableElement.dart b/client/dom/generated/src/frog/HTMLTableElement.dart
index 09b004aaa7d7eb2ce3eab7b094a2750dde0d96e2..8e66f6ace0c22eaec8e664f1550d4adf57cbeb5d 100644
--- a/client/dom/generated/src/frog/HTMLTableElement.dart
+++ b/client/dom/generated/src/frog/HTMLTableElement.dart
@@ -1,33 +1,57 @@
class HTMLTableElement extends HTMLElement native "*HTMLTableElement" {
- String align;
+ String get align() native "return this.align;";
- String bgColor;
+ void set align(String value) native "this.align = value;";
- String border;
+ String get bgColor() native "return this.bgColor;";
- HTMLTableCaptionElement caption;
+ void set bgColor(String value) native "this.bgColor = value;";
- String cellPadding;
+ String get border() native "return this.border;";
- String cellSpacing;
+ void set border(String value) native "this.border = value;";
- String frame;
+ HTMLTableCaptionElement get caption() native "return this.caption;";
- HTMLCollection rows;
+ void set caption(HTMLTableCaptionElement value) native "this.caption = value;";
- String rules;
+ String get cellPadding() native "return this.cellPadding;";
- String summary;
+ void set cellPadding(String value) native "this.cellPadding = value;";
- HTMLCollection tBodies;
+ String get cellSpacing() native "return this.cellSpacing;";
- HTMLTableSectionElement tFoot;
+ void set cellSpacing(String value) native "this.cellSpacing = value;";
- HTMLTableSectionElement tHead;
+ String get frame() native "return this.frame;";
- String width;
+ void set frame(String value) native "this.frame = value;";
+
+ HTMLCollection get rows() native "return this.rows;";
+
+ String get rules() native "return this.rules;";
+
+ void set rules(String value) native "this.rules = value;";
+
+ String get summary() native "return this.summary;";
+
+ void set summary(String value) native "this.summary = value;";
+
+ HTMLCollection get tBodies() native "return this.tBodies;";
+
+ HTMLTableSectionElement get tFoot() native "return this.tFoot;";
+
+ void set tFoot(HTMLTableSectionElement value) native "this.tFoot = value;";
+
+ HTMLTableSectionElement get tHead() native "return this.tHead;";
+
+ void set tHead(HTMLTableSectionElement value) native "this.tHead = value;";
+
+ String get width() native "return this.width;";
+
+ void set width(String value) native "this.width = value;";
HTMLElement createCaption() native;
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableColElement.dart ('k') | client/dom/generated/src/frog/HTMLTableRowElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698