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