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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableElement.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 _HTMLTableElementJs extends _HTMLElementJs implements HTMLTableElement nat ive "*HTMLTableElement" { 2 class _HTMLTableElementJs extends _HTMLElementJs implements HTMLTableElement nat ive "*HTMLTableElement" {
3 3
4 String get align() native "return this.align;"; 4 String align;
5 5
6 void set align(String value) native "this.align = value;"; 6 String bgColor;
7 7
8 String get bgColor() native "return this.bgColor;"; 8 String border;
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 _HTMLTableCaptionElementJs caption;
11 11
12 String get border() native "return this.border;"; 12 String cellPadding;
13 13
14 void set border(String value) native "this.border = value;"; 14 String cellSpacing;
15 15
16 _HTMLTableCaptionElementJs get caption() native "return this.caption;"; 16 String frame;
17 17
18 void set caption(_HTMLTableCaptionElementJs value) native "this.caption = valu e;"; 18 final _HTMLCollectionJs rows;
19 19
20 String get cellPadding() native "return this.cellPadding;"; 20 String rules;
21 21
22 void set cellPadding(String value) native "this.cellPadding = value;"; 22 String summary;
23 23
24 String get cellSpacing() native "return this.cellSpacing;"; 24 final _HTMLCollectionJs tBodies;
25 25
26 void set cellSpacing(String value) native "this.cellSpacing = value;"; 26 _HTMLTableSectionElementJs tFoot;
27 27
28 String get frame() native "return this.frame;"; 28 _HTMLTableSectionElementJs tHead;
29 29
30 void set frame(String value) native "this.frame = value;"; 30 String width;
31
32 _HTMLCollectionJs get rows() native "return this.rows;";
33
34 String get rules() native "return this.rules;";
35
36 void set rules(String value) native "this.rules = value;";
37
38 String get summary() native "return this.summary;";
39
40 void set summary(String value) native "this.summary = value;";
41
42 _HTMLCollectionJs get tBodies() native "return this.tBodies;";
43
44 _HTMLTableSectionElementJs get tFoot() native "return this.tFoot;";
45
46 void set tFoot(_HTMLTableSectionElementJs value) native "this.tFoot = value;";
47
48 _HTMLTableSectionElementJs get tHead() native "return this.tHead;";
49
50 void set tHead(_HTMLTableSectionElementJs value) native "this.tHead = value;";
51
52 String get width() native "return this.width;";
53
54 void set width(String value) native "this.width = value;";
55 31
56 _HTMLElementJs createCaption() native; 32 _HTMLElementJs createCaption() native;
57 33
58 _HTMLElementJs createTFoot() native; 34 _HTMLElementJs createTFoot() native;
59 35
60 _HTMLElementJs createTHead() native; 36 _HTMLElementJs createTHead() native;
61 37
62 void deleteCaption() native; 38 void deleteCaption() native;
63 39
64 void deleteRow(int index) native; 40 void deleteRow(int index) native;
65 41
66 void deleteTFoot() native; 42 void deleteTFoot() native;
67 43
68 void deleteTHead() native; 44 void deleteTHead() native;
69 45
70 _HTMLElementJs insertRow(int index) native; 46 _HTMLElementJs insertRow(int index) native;
71 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698