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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 HTMLAppletElement extends HTMLElement native "*HTMLAppletElement" { 2 class HTMLAppletElementJS extends HTMLElementJS implements HTMLAppletElement nat ive "*HTMLAppletElement" {
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 archive() native "return this.archive;"; 12 String get archive() native "return this.archive;";
(...skipping 25 matching lines...) Expand all
38 void set object(String value) native "this.object = value;"; 38 void set object(String value) native "this.object = value;";
39 39
40 String get vspace() native "return this.vspace;"; 40 String get vspace() native "return this.vspace;";
41 41
42 void set vspace(String value) native "this.vspace = value;"; 42 void set vspace(String value) native "this.vspace = value;";
43 43
44 String get width() native "return this.width;"; 44 String get width() native "return this.width;";
45 45
46 void set width(String value) native "this.width = value;"; 46 void set width(String value) native "this.width = value;";
47 } 47 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLAnchorElement.dart ('k') | client/dom/generated/src/frog/HTMLAreaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698