| OLD | NEW |
| 1 | 1 |
| 2 class HTMLTableSectionElementJs extends HTMLElementJs implements HTMLTableSectio
nElement native "*HTMLTableSectionElement" { | 2 class _HTMLTableSectionElementJs extends _HTMLElementJs implements HTMLTableSect
ionElement 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 HTMLCollectionJs 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 HTMLElementJs insertRow(int index) native; | 24 _HTMLElementJs insertRow(int index) native; |
| 25 } | 25 } |
| OLD | NEW |