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

Unified Diff: client/dom/generated/src/interface/HTMLTableCellElement.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/HTMLTableCellElement.dart
diff --git a/client/dom/generated/src/interface/HTMLTableCellElement.dart b/client/dom/generated/src/interface/HTMLTableCellElement.dart
index 3ea1c0e1438fcaee64921960fb16f410f0742eaa..c33df3cf4f18963ee3527f16c394904ca714e1e3 100644
--- a/client/dom/generated/src/interface/HTMLTableCellElement.dart
+++ b/client/dom/generated/src/interface/HTMLTableCellElement.dart
@@ -6,61 +6,33 @@
interface HTMLTableCellElement extends HTMLElement {
- String get abbr();
+ String abbr;
- void set abbr(String value);
+ String align;
- String get align();
+ String axis;
- void set align(String value);
+ String bgColor;
- String get axis();
+ final int cellIndex;
- void set axis(String value);
+ String ch;
- String get bgColor();
+ String chOff;
- void set bgColor(String value);
+ int colSpan;
- int get cellIndex();
+ String headers;
- String get ch();
+ String height;
- void set ch(String value);
+ bool noWrap;
- String get chOff();
+ int rowSpan;
- void set chOff(String value);
+ String scope;
- int get colSpan();
+ String vAlign;
- void set colSpan(int value);
-
- String get headers();
-
- void set headers(String value);
-
- String get height();
-
- void set height(String value);
-
- bool get noWrap();
-
- void set noWrap(bool value);
-
- int get rowSpan();
-
- void set rowSpan(int value);
-
- String get scope();
-
- void set scope(String value);
-
- String get vAlign();
-
- void set vAlign(String value);
-
- String get width();
-
- void set width(String value);
+ String width;
}

Powered by Google App Engine
This is Rietveld 408576698