| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ
e "*HTMLBodyElement" { | 2 class _HTMLBodyElementJs extends _HTMLElementJs implements HTMLBodyElement nativ
e "*HTMLBodyElement" { |
| 3 | 3 |
| 4 String get aLink() native "return this.aLink;"; | 4 String aLink; |
| 5 | 5 |
| 6 void set aLink(String value) native "this.aLink = value;"; | 6 String background; |
| 7 | 7 |
| 8 String get background() native "return this.background;"; | 8 String bgColor; |
| 9 | 9 |
| 10 void set background(String value) native "this.background = value;"; | 10 String link; |
| 11 | 11 |
| 12 String get bgColor() native "return this.bgColor;"; | 12 String text; |
| 13 | 13 |
| 14 void set bgColor(String value) native "this.bgColor = value;"; | 14 String vLink; |
| 15 | |
| 16 String get link() native "return this.link;"; | |
| 17 | |
| 18 void set link(String value) native "this.link = value;"; | |
| 19 | |
| 20 String get text() native "return this.text;"; | |
| 21 | |
| 22 void set text(String value) native "this.text = value;"; | |
| 23 | |
| 24 String get vLink() native "return this.vLink;"; | |
| 25 | |
| 26 void set vLink(String value) native "this.vLink = value;"; | |
| 27 } | 15 } |
| OLD | NEW |