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

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

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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/dom/generated/src/interface/HTMLTableElement.dart
diff --git a/client/dom/generated/src/interface/HTMLTableElement.dart b/client/dom/generated/src/interface/HTMLTableElement.dart
index 6661056110b4799926d6763dd324fe7d69accd4c..da21404dd3073d8615669cbfef5092f6710aecad 100644
--- a/client/dom/generated/src/interface/HTMLTableElement.dart
+++ b/client/dom/generated/src/interface/HTMLTableElement.dart
@@ -6,57 +6,33 @@
interface HTMLTableElement extends HTMLElement {
- String get align();
+ String align;
- void set align(String value);
+ String bgColor;
- String get bgColor();
+ String border;
- void set bgColor(String value);
+ HTMLTableCaptionElement caption;
- String get border();
+ String cellPadding;
- void set border(String value);
+ String cellSpacing;
- HTMLTableCaptionElement get caption();
+ String frame;
- void set caption(HTMLTableCaptionElement value);
+ final HTMLCollection rows;
- String get cellPadding();
+ String rules;
- void set cellPadding(String value);
+ String summary;
- String get cellSpacing();
+ final HTMLCollection tBodies;
- void set cellSpacing(String value);
+ HTMLTableSectionElement tFoot;
- String get frame();
+ HTMLTableSectionElement tHead;
- void set frame(String value);
-
- HTMLCollection get rows();
-
- String get rules();
-
- void set rules(String value);
-
- String get summary();
-
- void set summary(String value);
-
- HTMLCollection get tBodies();
-
- HTMLTableSectionElement get tFoot();
-
- void set tFoot(HTMLTableSectionElement value);
-
- HTMLTableSectionElement get tHead();
-
- void set tHead(HTMLTableSectionElement value);
-
- String get width();
-
- void set width(String value);
+ String width;
HTMLElement createCaption();

Powered by Google App Engine
This is Rietveld 408576698