OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface HTMLInputElement extends HTMLElement { | 7 interface HTMLInputElement extends HTMLElement { |
8 | 8 |
9 String accept; | 9 String accept; |
10 | 10 |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 bool webkitGrammar; | 93 bool webkitGrammar; |
94 | 94 |
95 bool webkitSpeech; | 95 bool webkitSpeech; |
96 | 96 |
97 bool webkitdirectory; | 97 bool webkitdirectory; |
98 | 98 |
99 final bool willValidate; | 99 final bool willValidate; |
100 | 100 |
101 bool checkValidity(); | 101 bool checkValidity(); |
102 | 102 |
103 void click(); | |
104 | |
105 void select(); | 103 void select(); |
106 | 104 |
107 void setCustomValidity(String error); | 105 void setCustomValidity(String error); |
108 | 106 |
109 void setSelectionRange(int start, int end, [String direction]); | 107 void setSelectionRange(int start, int end, [String direction]); |
110 | 108 |
111 void stepDown([int n]); | 109 void stepDown([int n]); |
112 | 110 |
113 void stepUp([int n]); | 111 void stepUp([int n]); |
114 } | 112 } |
OLD | NEW |