OLD | NEW |
1 | 1 |
2 class HTMLOptionsCollectionJs extends HTMLCollectionJs implements HTMLOptionsCol
lection native "*HTMLOptionsCollection" { | 2 class _HTMLOptionsCollectionJs extends _HTMLCollectionJs implements HTMLOptionsC
ollection native "*HTMLOptionsCollection" { |
3 | 3 |
4 int get length() native "return this.length;"; | 4 int get length() native "return this.length;"; |
5 | 5 |
6 void set length(int value) native "this.length = value;"; | 6 void set length(int value) native "this.length = value;"; |
7 | 7 |
8 int get selectedIndex() native "return this.selectedIndex;"; | 8 int get selectedIndex() native "return this.selectedIndex;"; |
9 | 9 |
10 void set selectedIndex(int value) native "this.selectedIndex = value;"; | 10 void set selectedIndex(int value) native "this.selectedIndex = value;"; |
11 | 11 |
12 void remove(int index) native; | 12 void remove(int index) native; |
13 } | 13 } |
OLD | NEW |