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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableCellElement.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 HTMLTableCellElement extends HTMLElement native "*HTMLTableCellElement" { 2 class HTMLTableCellElementJS extends HTMLElementJS implements HTMLTableCellEleme nt native "*HTMLTableCellElement" {
3 3
4 String get abbr() native "return this.abbr;"; 4 String get abbr() native "return this.abbr;";
5 5
6 void set abbr(String value) native "this.abbr = value;"; 6 void set abbr(String value) native "this.abbr = value;";
7 7
8 String get align() native "return this.align;"; 8 String get align() native "return this.align;";
9 9
10 void set align(String value) native "this.align = value;"; 10 void set align(String value) native "this.align = value;";
11 11
12 String get axis() native "return this.axis;"; 12 String get axis() native "return this.axis;";
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 void set scope(String value) native "this.scope = value;"; 52 void set scope(String value) native "this.scope = value;";
53 53
54 String get vAlign() native "return this.vAlign;"; 54 String get vAlign() native "return this.vAlign;";
55 55
56 void set vAlign(String value) native "this.vAlign = value;"; 56 void set vAlign(String value) native "this.vAlign = value;";
57 57
58 String get width() native "return this.width;"; 58 String get width() native "return this.width;";
59 59
60 void set width(String value) native "this.width = value;"; 60 void set width(String value) native "this.width = value;";
61 } 61 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableCaptionElement.dart ('k') | client/dom/generated/src/frog/HTMLTableColElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698