OLD | NEW |
1 | 1 |
2 class HTMLSourceElementJs extends HTMLElementJs implements HTMLSourceElement nat
ive "*HTMLSourceElement" { | 2 class _HTMLSourceElementJs extends _HTMLElementJs implements HTMLSourceElement n
ative "*HTMLSourceElement" { |
3 | 3 |
4 String get media() native "return this.media;"; | 4 String get media() native "return this.media;"; |
5 | 5 |
6 void set media(String value) native "this.media = value;"; | 6 void set media(String value) native "this.media = value;"; |
7 | 7 |
8 String get src() native "return this.src;"; | 8 String get src() native "return this.src;"; |
9 | 9 |
10 void set src(String value) native "this.src = value;"; | 10 void set src(String value) native "this.src = value;"; |
11 | 11 |
12 String get type() native "return this.type;"; | 12 String get type() native "return this.type;"; |
13 | 13 |
14 void set type(String value) native "this.type = value;"; | 14 void set type(String value) native "this.type = value;"; |
15 } | 15 } |
OLD | NEW |