OLD | NEW |
1 | 1 |
2 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
ive "*HTMLInputElement" { | 2 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
ive "*HTMLInputElement" { |
3 | 3 |
4 String accept; | 4 String accept; |
5 | 5 |
6 String align; | 6 String align; |
7 | 7 |
8 String alt; | 8 String alt; |
9 | 9 |
10 String autocomplete; | 10 String autocomplete; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 bool webkitGrammar; | 88 bool webkitGrammar; |
89 | 89 |
90 bool webkitSpeech; | 90 bool webkitSpeech; |
91 | 91 |
92 bool webkitdirectory; | 92 bool webkitdirectory; |
93 | 93 |
94 final bool willValidate; | 94 final bool willValidate; |
95 | 95 |
96 bool checkValidity() native; | 96 bool checkValidity() native; |
97 | 97 |
98 void click() native; | |
99 | |
100 void select() native; | 98 void select() native; |
101 | 99 |
102 void setCustomValidity(String error) native; | 100 void setCustomValidity(String error) native; |
103 | 101 |
104 void setSelectionRange(int start, int end, [String direction = null]) native; | 102 void setSelectionRange(int start, int end, [String direction = null]) native; |
105 | 103 |
106 void stepDown([int n = null]) native; | 104 void stepDown([int n = null]) native; |
107 | 105 |
108 void stepUp([int n = null]) native; | 106 void stepUp([int n = null]) native; |
109 } | 107 } |
OLD | NEW |