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

Side by Side Diff: client/dom/generated/src/frog/HTMLImageElement.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class HTMLImageElementJS extends HTMLElementJS implements HTMLImageElement nativ e "*HTMLImageElement" { 2 class HTMLImageElementJs extends HTMLElementJs implements HTMLImageElement nativ e "*HTMLImageElement" {
3 3
4 String get align() native "return this.align;"; 4 String get align() native "return this.align;";
5 5
6 void set align(String value) native "this.align = value;"; 6 void set align(String value) native "this.align = value;";
7 7
8 String get alt() native "return this.alt;"; 8 String get alt() native "return this.alt;";
9 9
10 void set alt(String value) native "this.alt = value;"; 10 void set alt(String value) native "this.alt = value;";
11 11
12 String get border() native "return this.border;"; 12 String get border() native "return this.border;";
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 void set vspace(int value) native "this.vspace = value;"; 60 void set vspace(int value) native "this.vspace = value;";
61 61
62 int get width() native "return this.width;"; 62 int get width() native "return this.width;";
63 63
64 void set width(int value) native "this.width = value;"; 64 void set width(int value) native "this.width = value;";
65 65
66 int get x() native "return this.x;"; 66 int get x() native "return this.x;";
67 67
68 int get y() native "return this.y;"; 68 int get y() native "return this.y;";
69 } 69 }
OLDNEW
« 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