| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 get accept(); | 9 String get accept(); |
| 10 | 10 |
| 11 void set accept(String value); | 11 void set accept(String value); |
| 12 | 12 |
| 13 String get accessKey(); | |
| 14 | |
| 15 void set accessKey(String value); | |
| 16 | |
| 17 String get align(); | 13 String get align(); |
| 18 | 14 |
| 19 void set align(String value); | 15 void set align(String value); |
| 20 | 16 |
| 21 String get alt(); | 17 String get alt(); |
| 22 | 18 |
| 23 void set alt(String value); | 19 void set alt(String value); |
| 24 | 20 |
| 25 String get autocomplete(); | 21 String get autocomplete(); |
| 26 | 22 |
| 27 void set autocomplete(String value); | 23 void set autocomplete(String value); |
| 28 | 24 |
| 29 bool get autofocus(); | 25 bool get autofocus(); |
| 30 | 26 |
| 31 void set autofocus(bool value); | 27 void set autofocus(bool value); |
| 32 | 28 |
| 33 bool get checked(); | 29 bool get checked(); |
| 34 | 30 |
| 35 void set checked(bool value); | 31 void set checked(bool value); |
| 36 | 32 |
| 37 bool get defaultChecked(); | 33 bool get defaultChecked(); |
| 38 | 34 |
| 39 void set defaultChecked(bool value); | 35 void set defaultChecked(bool value); |
| 40 | 36 |
| 41 String get defaultValue(); | 37 String get defaultValue(); |
| 42 | 38 |
| 43 void set defaultValue(String value); | 39 void set defaultValue(String value); |
| 44 | 40 |
| 41 String get dirName(); |
| 42 |
| 43 void set dirName(String value); |
| 44 |
| 45 bool get disabled(); | 45 bool get disabled(); |
| 46 | 46 |
| 47 void set disabled(bool value); | 47 void set disabled(bool value); |
| 48 | 48 |
| 49 FileList get files(); | 49 FileList get files(); |
| 50 | 50 |
| 51 HTMLFormElement get form(); | 51 HTMLFormElement get form(); |
| 52 | 52 |
| 53 String get formAction(); | 53 String get formAction(); |
| 54 | 54 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 void select(); | 189 void select(); |
| 190 | 190 |
| 191 void setCustomValidity(String error); | 191 void setCustomValidity(String error); |
| 192 | 192 |
| 193 void setSelectionRange(int start, int end, [String direction]); | 193 void setSelectionRange(int start, int end, [String direction]); |
| 194 | 194 |
| 195 void stepDown([int n]); | 195 void stepDown([int n]); |
| 196 | 196 |
| 197 void stepUp([int n]); | 197 void stepUp([int n]); |
| 198 } | 198 } |
| OLD | NEW |