| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLHRElementJs extends _HTMLElementJs implements HTMLHRElement native "*
HTMLHRElement" { | 2 class _HTMLHRElementJs extends _HTMLElementJs implements HTMLHRElement native "*
HTMLHRElement" { |
| 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 bool noShade; |
| 7 | 7 |
| 8 bool get noShade() native "return this.noShade;"; | 8 String size; |
| 9 | 9 |
| 10 void set noShade(bool value) native "this.noShade = value;"; | 10 String width; |
| 11 | |
| 12 String get size() native "return this.size;"; | |
| 13 | |
| 14 void set size(String value) native "this.size = value;"; | |
| 15 | |
| 16 String get width() native "return this.width;"; | |
| 17 | |
| 18 void set width(String value) native "this.width = value;"; | |
| 19 } | 11 } |
| OLD | NEW |