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

Unified Diff: client/dom/generated/src/interface/HTMLImageElement.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/HTMLImageElement.dart
diff --git a/client/dom/generated/src/interface/HTMLImageElement.dart b/client/dom/generated/src/interface/HTMLImageElement.dart
index e47f18249ae53d97349993089e0cd5b548a4e3c5..a3e792859bfe49dd5587d01287105188b7ccb818 100644
--- a/client/dom/generated/src/interface/HTMLImageElement.dart
+++ b/client/dom/generated/src/interface/HTMLImageElement.dart
@@ -6,69 +6,41 @@
interface HTMLImageElement extends HTMLElement {
- String get align();
+ String align;
- void set align(String value);
+ String alt;
- String get alt();
+ String border;
- void set alt(String value);
+ final bool complete;
- String get border();
+ String crossOrigin;
- void set border(String value);
+ int height;
- bool get complete();
+ int hspace;
- String get crossOrigin();
+ bool isMap;
- void set crossOrigin(String value);
+ String longDesc;
- int get height();
+ String lowsrc;
- void set height(int value);
+ String name;
- int get hspace();
+ final int naturalHeight;
- void set hspace(int value);
+ final int naturalWidth;
- bool get isMap();
+ String src;
- void set isMap(bool value);
+ String useMap;
- String get longDesc();
+ int vspace;
- void set longDesc(String value);
+ int width;
- String get lowsrc();
+ final int x;
- void set lowsrc(String value);
-
- String get name();
-
- void set name(String value);
-
- int get naturalHeight();
-
- int get naturalWidth();
-
- String get src();
-
- void set src(String value);
-
- String get useMap();
-
- void set useMap(String value);
-
- int get vspace();
-
- void set vspace(int value);
-
- int get width();
-
- void set width(int value);
-
- int get x();
-
- int get y();
+ final int y;
}

Powered by Google App Engine
This is Rietveld 408576698