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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableElement.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 HTMLTableElement extends HTMLElement native "*HTMLTableElement" { 2 class HTMLTableElementJS extends HTMLElementJS implements HTMLTableElement nativ e "*HTMLTableElement" {
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 bgColor() native "return this.bgColor;"; 8 String get bgColor() native "return this.bgColor;";
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 void set bgColor(String value) native "this.bgColor = value;";
11 11
12 String get border() native "return this.border;"; 12 String get border() native "return this.border;";
13 13
14 void set border(String value) native "this.border = value;"; 14 void set border(String value) native "this.border = value;";
15 15
16 HTMLTableCaptionElement get caption() native "return this.caption;"; 16 HTMLTableCaptionElementJS get caption() native "return this.caption;";
17 17
18 void set caption(HTMLTableCaptionElement value) native "this.caption = value;" ; 18 void set caption(HTMLTableCaptionElementJS value) native "this.caption = value ;";
19 19
20 String get cellPadding() native "return this.cellPadding;"; 20 String get cellPadding() native "return this.cellPadding;";
21 21
22 void set cellPadding(String value) native "this.cellPadding = value;"; 22 void set cellPadding(String value) native "this.cellPadding = value;";
23 23
24 String get cellSpacing() native "return this.cellSpacing;"; 24 String get cellSpacing() native "return this.cellSpacing;";
25 25
26 void set cellSpacing(String value) native "this.cellSpacing = value;"; 26 void set cellSpacing(String value) native "this.cellSpacing = value;";
27 27
28 String get frame() native "return this.frame;"; 28 String get frame() native "return this.frame;";
29 29
30 void set frame(String value) native "this.frame = value;"; 30 void set frame(String value) native "this.frame = value;";
31 31
32 HTMLCollection get rows() native "return this.rows;"; 32 HTMLCollectionJS get rows() native "return this.rows;";
33 33
34 String get rules() native "return this.rules;"; 34 String get rules() native "return this.rules;";
35 35
36 void set rules(String value) native "this.rules = value;"; 36 void set rules(String value) native "this.rules = value;";
37 37
38 String get summary() native "return this.summary;"; 38 String get summary() native "return this.summary;";
39 39
40 void set summary(String value) native "this.summary = value;"; 40 void set summary(String value) native "this.summary = value;";
41 41
42 HTMLCollection get tBodies() native "return this.tBodies;"; 42 HTMLCollectionJS get tBodies() native "return this.tBodies;";
43 43
44 HTMLTableSectionElement get tFoot() native "return this.tFoot;"; 44 HTMLTableSectionElementJS get tFoot() native "return this.tFoot;";
45 45
46 void set tFoot(HTMLTableSectionElement value) native "this.tFoot = value;"; 46 void set tFoot(HTMLTableSectionElementJS value) native "this.tFoot = value;";
47 47
48 HTMLTableSectionElement get tHead() native "return this.tHead;"; 48 HTMLTableSectionElementJS get tHead() native "return this.tHead;";
49 49
50 void set tHead(HTMLTableSectionElement value) native "this.tHead = value;"; 50 void set tHead(HTMLTableSectionElementJS value) native "this.tHead = value;";
51 51
52 String get width() native "return this.width;"; 52 String get width() native "return this.width;";
53 53
54 void set width(String value) native "this.width = value;"; 54 void set width(String value) native "this.width = value;";
55 55
56 HTMLElement createCaption() native; 56 HTMLElementJS createCaption() native;
57 57
58 HTMLElement createTFoot() native; 58 HTMLElementJS createTFoot() native;
59 59
60 HTMLElement createTHead() native; 60 HTMLElementJS createTHead() native;
61 61
62 void deleteCaption() native; 62 void deleteCaption() native;
63 63
64 void deleteRow(int index) native; 64 void deleteRow(int index) native;
65 65
66 void deleteTFoot() native; 66 void deleteTFoot() native;
67 67
68 void deleteTHead() native; 68 void deleteTHead() native;
69 69
70 HTMLElement insertRow(int index) native; 70 HTMLElementJS insertRow(int index) native;
71 } 71 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableColElement.dart ('k') | client/dom/generated/src/frog/HTMLTableRowElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698