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

Side by Side Diff: client/dom/generated/src/frog/HTMLAnchorElement.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 HTMLAnchorElementJS extends HTMLElementJS implements HTMLAnchorElement nat ive "*HTMLAnchorElement" { 2 class HTMLAnchorElementJs extends HTMLElementJs implements HTMLAnchorElement nat ive "*HTMLAnchorElement" {
3 3
4 String get charset() native "return this.charset;"; 4 String get charset() native "return this.charset;";
5 5
6 void set charset(String value) native "this.charset = value;"; 6 void set charset(String value) native "this.charset = value;";
7 7
8 String get coords() native "return this.coords;"; 8 String get coords() native "return this.coords;";
9 9
10 void set coords(String value) native "this.coords = value;"; 10 void set coords(String value) native "this.coords = value;";
11 11
12 String get download() native "return this.download;"; 12 String get download() native "return this.download;";
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 void set target(String value) native "this.target = value;"; 76 void set target(String value) native "this.target = value;";
77 77
78 String get text() native "return this.text;"; 78 String get text() native "return this.text;";
79 79
80 String get type() native "return this.type;"; 80 String get type() native "return this.type;";
81 81
82 void set type(String value) native "this.type = value;"; 82 void set type(String value) native "this.type = value;";
83 83
84 String toString() native; 84 String toString() native;
85 } 85 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLAllCollection.dart ('k') | client/dom/generated/src/frog/HTMLAppletElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698