| OLD | NEW |
| 1 | 1 |
| 2 class HTMLTableCellElementJs extends HTMLElementJs implements HTMLTableCellEleme
nt native "*HTMLTableCellElement" { | 2 class _HTMLTableCellElementJs extends _HTMLElementJs implements HTMLTableCellEle
ment native "*HTMLTableCellElement" { |
| 3 | 3 |
| 4 String get abbr() native "return this.abbr;"; | 4 String get abbr() native "return this.abbr;"; |
| 5 | 5 |
| 6 void set abbr(String value) native "this.abbr = value;"; | 6 void set abbr(String value) native "this.abbr = value;"; |
| 7 | 7 |
| 8 String get align() native "return this.align;"; | 8 String get align() native "return this.align;"; |
| 9 | 9 |
| 10 void set align(String value) native "this.align = value;"; | 10 void set align(String value) native "this.align = value;"; |
| 11 | 11 |
| 12 String get axis() native "return this.axis;"; | 12 String get axis() native "return this.axis;"; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 void set scope(String value) native "this.scope = value;"; | 52 void set scope(String value) native "this.scope = value;"; |
| 53 | 53 |
| 54 String get vAlign() native "return this.vAlign;"; | 54 String get vAlign() native "return this.vAlign;"; |
| 55 | 55 |
| 56 void set vAlign(String value) native "this.vAlign = value;"; | 56 void set vAlign(String value) native "this.vAlign = value;"; |
| 57 | 57 |
| 58 String get width() native "return this.width;"; | 58 String get width() native "return this.width;"; |
| 59 | 59 |
| 60 void set width(String value) native "this.width = value;"; | 60 void set width(String value) native "this.width = value;"; |
| 61 } | 61 } |
| OLD | NEW |