| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme
nt native "*HTMLTableRowElement" { | 2 class _HTMLTableRowElementJs extends _HTMLElementJs implements HTMLTableRowEleme
nt native "*HTMLTableRowElement" { |
| 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 final _HTMLCollectionJs cells; |
| 9 | 9 |
| 10 void set bgColor(String value) native "this.bgColor = value;"; | 10 String ch; |
| 11 | 11 |
| 12 _HTMLCollectionJs get cells() native "return this.cells;"; | 12 String chOff; |
| 13 | 13 |
| 14 String get ch() native "return this.ch;"; | 14 final int rowIndex; |
| 15 | 15 |
| 16 void set ch(String value) native "this.ch = value;"; | 16 final int sectionRowIndex; |
| 17 | 17 |
| 18 String get chOff() native "return this.chOff;"; | 18 String vAlign; |
| 19 | |
| 20 void set chOff(String value) native "this.chOff = value;"; | |
| 21 | |
| 22 int get rowIndex() native "return this.rowIndex;"; | |
| 23 | |
| 24 int get sectionRowIndex() native "return this.sectionRowIndex;"; | |
| 25 | |
| 26 String get vAlign() native "return this.vAlign;"; | |
| 27 | |
| 28 void set vAlign(String value) native "this.vAlign = value;"; | |
| 29 | 19 |
| 30 void deleteCell(int index) native; | 20 void deleteCell(int index) native; |
| 31 | 21 |
| 32 _HTMLElementJs insertCell(int index) native; | 22 _HTMLElementJs insertCell(int index) native; |
| 33 } | 23 } |
| OLD | NEW |