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

Unified Diff: client/dom/generated/src/interface/HTMLTableRowElement.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/HTMLTableRowElement.dart
diff --git a/client/dom/generated/src/interface/HTMLTableRowElement.dart b/client/dom/generated/src/interface/HTMLTableRowElement.dart
index 85822de36c239cfb6b0e2125287e4dc614b1c6da..93c85a3639c8b9c6c00d7da1ffaf7f5f808e7376 100644
--- a/client/dom/generated/src/interface/HTMLTableRowElement.dart
+++ b/client/dom/generated/src/interface/HTMLTableRowElement.dart
@@ -6,31 +6,21 @@
interface HTMLTableRowElement extends HTMLElement {
- String get align();
+ String align;
- void set align(String value);
+ String bgColor;
- String get bgColor();
+ final HTMLCollection cells;
- void set bgColor(String value);
+ String ch;
- HTMLCollection get cells();
+ String chOff;
- String get ch();
+ final int rowIndex;
- void set ch(String value);
+ final int sectionRowIndex;
- String get chOff();
-
- void set chOff(String value);
-
- int get rowIndex();
-
- int get sectionRowIndex();
-
- String get vAlign();
-
- void set vAlign(String value);
+ String vAlign;
void deleteCell(int index);

Powered by Google App Engine
This is Rietveld 408576698