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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 10 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 _HTMLTableCellElementJs extends _HTMLElementJs implements HTMLTableCellEle ment native "*HTMLTableCellElement" { 2 class _HTMLTableCellElementJs extends _HTMLElementJs implements HTMLTableCellEle ment native "*HTMLTableCellElement" {
3 3
4 String get abbr() native "return this.abbr;"; 4 String abbr;
5 5
6 void set abbr(String value) native "this.abbr = value;"; 6 String align;
7 7
8 String get align() native "return this.align;"; 8 String axis;
9 9
10 void set align(String value) native "this.align = value;"; 10 String bgColor;
11 11
12 String get axis() native "return this.axis;"; 12 final int cellIndex;
13 13
14 void set axis(String value) native "this.axis = value;"; 14 String ch;
15 15
16 String get bgColor() native "return this.bgColor;"; 16 String chOff;
17 17
18 void set bgColor(String value) native "this.bgColor = value;"; 18 int colSpan;
19 19
20 int get cellIndex() native "return this.cellIndex;"; 20 String headers;
21 21
22 String get ch() native "return this.ch;"; 22 String height;
23 23
24 void set ch(String value) native "this.ch = value;"; 24 bool noWrap;
25 25
26 String get chOff() native "return this.chOff;"; 26 int rowSpan;
27 27
28 void set chOff(String value) native "this.chOff = value;"; 28 String scope;
29 29
30 int get colSpan() native "return this.colSpan;"; 30 String vAlign;
31 31
32 void set colSpan(int value) native "this.colSpan = value;"; 32 String width;
33
34 String get headers() native "return this.headers;";
35
36 void set headers(String value) native "this.headers = value;";
37
38 String get height() native "return this.height;";
39
40 void set height(String value) native "this.height = value;";
41
42 bool get noWrap() native "return this.noWrap;";
43
44 void set noWrap(bool value) native "this.noWrap = value;";
45
46 int get rowSpan() native "return this.rowSpan;";
47
48 void set rowSpan(int value) native "this.rowSpan = value;";
49
50 String get scope() native "return this.scope;";
51
52 void set scope(String value) native "this.scope = value;";
53
54 String get vAlign() native "return this.vAlign;";
55
56 void set vAlign(String value) native "this.vAlign = value;";
57
58 String get width() native "return this.width;";
59
60 void set width(String value) native "this.width = value;";
61 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698