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

Side by Side Diff: client/dom/generated/src/frog/HTMLTableSectionElement.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 HTMLTableSectionElement extends HTMLElement native "*HTMLTableSectionEleme nt" { 2 class HTMLTableSectionElementJS extends HTMLElementJS implements HTMLTableSectio nElement native "*HTMLTableSectionElement" {
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 ch() native "return this.ch;"; 8 String get ch() native "return this.ch;";
9 9
10 void set ch(String value) native "this.ch = value;"; 10 void set ch(String value) native "this.ch = value;";
11 11
12 String get chOff() native "return this.chOff;"; 12 String get chOff() native "return this.chOff;";
13 13
14 void set chOff(String value) native "this.chOff = value;"; 14 void set chOff(String value) native "this.chOff = value;";
15 15
16 HTMLCollection get rows() native "return this.rows;"; 16 HTMLCollectionJS get rows() native "return this.rows;";
17 17
18 String get vAlign() native "return this.vAlign;"; 18 String get vAlign() native "return this.vAlign;";
19 19
20 void set vAlign(String value) native "this.vAlign = value;"; 20 void set vAlign(String value) native "this.vAlign = value;";
21 21
22 void deleteRow(int index) native; 22 void deleteRow(int index) native;
23 23
24 HTMLElement insertRow(int index) native; 24 HTMLElementJS insertRow(int index) native;
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/HTMLTableRowElement.dart ('k') | client/dom/generated/src/frog/HTMLTextAreaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698