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

Unified Diff: client/dom/generated/src/frog/HTMLImageElement.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/HTMLImageElement.dart
diff --git a/client/dom/generated/src/frog/HTMLImageElement.dart b/client/dom/generated/src/frog/HTMLImageElement.dart
index 74087114087eea655c19f3577d1ec9af7b6515e3..5bf54e30431c1d176250daaf7d116ab9214a7c0c 100644
--- a/client/dom/generated/src/frog/HTMLImageElement.dart
+++ b/client/dom/generated/src/frog/HTMLImageElement.dart
@@ -1,41 +1,69 @@
class HTMLImageElement extends HTMLElement native "*HTMLImageElement" {
- String align;
+ String get align() native "return this.align;";
- String alt;
+ void set align(String value) native "this.align = value;";
- String border;
+ String get alt() native "return this.alt;";
- bool complete;
+ void set alt(String value) native "this.alt = value;";
- String crossOrigin;
+ String get border() native "return this.border;";
- int height;
+ void set border(String value) native "this.border = value;";
- int hspace;
+ bool get complete() native "return this.complete;";
- bool isMap;
+ String get crossOrigin() native "return this.crossOrigin;";
- String longDesc;
+ void set crossOrigin(String value) native "this.crossOrigin = value;";
- String lowsrc;
+ int get height() native "return this.height;";
- String name;
+ void set height(int value) native "this.height = value;";
- int naturalHeight;
+ int get hspace() native "return this.hspace;";
- int naturalWidth;
+ void set hspace(int value) native "this.hspace = value;";
- String src;
+ bool get isMap() native "return this.isMap;";
- String useMap;
+ void set isMap(bool value) native "this.isMap = value;";
- int vspace;
+ String get longDesc() native "return this.longDesc;";
- int width;
+ void set longDesc(String value) native "this.longDesc = value;";
- int x;
+ String get lowsrc() native "return this.lowsrc;";
- int y;
+ void set lowsrc(String value) native "this.lowsrc = value;";
+
+ String get name() native "return this.name;";
+
+ void set name(String value) native "this.name = value;";
+
+ int get naturalHeight() native "return this.naturalHeight;";
+
+ int get naturalWidth() native "return this.naturalWidth;";
+
+ String get src() native "return this.src;";
+
+ void set src(String value) native "this.src = value;";
+
+ String get useMap() native "return this.useMap;";
+
+ void set useMap(String value) native "this.useMap = value;";
+
+ int get vspace() native "return this.vspace;";
+
+ void set vspace(int value) native "this.vspace = value;";
+
+ int get width() native "return this.width;";
+
+ void set width(int value) native "this.width = value;";
+
+ int get x() native "return this.x;";
+
+ int get y() native "return this.y;";
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLIFrameElement.dart ('k') | client/dom/generated/src/frog/HTMLInputElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698