OLD | NEW |
1 | 1 |
2 class HTMLBaseElementJs extends HTMLElementJs implements HTMLBaseElement native
"*HTMLBaseElement" { | 2 class _HTMLBaseElementJs extends _HTMLElementJs implements HTMLBaseElement nativ
e "*HTMLBaseElement" { |
3 | 3 |
4 String get href() native "return this.href;"; | 4 String get href() native "return this.href;"; |
5 | 5 |
6 void set href(String value) native "this.href = value;"; | 6 void set href(String value) native "this.href = value;"; |
7 | 7 |
8 String get target() native "return this.target;"; | 8 String get target() native "return this.target;"; |
9 | 9 |
10 void set target(String value) native "this.target = value;"; | 10 void set target(String value) native "this.target = value;"; |
11 } | 11 } |
OLD | NEW |