| 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 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 bool get incremental(); | 73 bool get incremental(); |
| 74 | 74 |
| 75 void set incremental(bool value); | 75 void set incremental(bool value); |
| 76 | 76 |
| 77 bool get indeterminate(); | 77 bool get indeterminate(); |
| 78 | 78 |
| 79 void set indeterminate(bool value); | 79 void set indeterminate(bool value); |
| 80 | 80 |
| 81 NodeList get labels(); | 81 NodeList get labels(); |
| 82 | 82 |
| 83 HTMLElement get list(); | |
| 84 | |
| 85 String get max(); | 83 String get max(); |
| 86 | 84 |
| 87 void set max(String value); | 85 void set max(String value); |
| 88 | 86 |
| 89 int get maxLength(); | 87 int get maxLength(); |
| 90 | 88 |
| 91 void set maxLength(int value); | 89 void set maxLength(int value); |
| 92 | 90 |
| 93 String get min(); | 91 String get min(); |
| 94 | 92 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 111 void set placeholder(String value); | 109 void set placeholder(String value); |
| 112 | 110 |
| 113 bool get readOnly(); | 111 bool get readOnly(); |
| 114 | 112 |
| 115 void set readOnly(bool value); | 113 void set readOnly(bool value); |
| 116 | 114 |
| 117 bool get required(); | 115 bool get required(); |
| 118 | 116 |
| 119 void set required(bool value); | 117 void set required(bool value); |
| 120 | 118 |
| 121 HTMLOptionElement get selectedOption(); | |
| 122 | |
| 123 String get selectionDirection(); | 119 String get selectionDirection(); |
| 124 | 120 |
| 125 void set selectionDirection(String value); | 121 void set selectionDirection(String value); |
| 126 | 122 |
| 127 int get selectionEnd(); | 123 int get selectionEnd(); |
| 128 | 124 |
| 129 void set selectionEnd(int value); | 125 void set selectionEnd(int value); |
| 130 | 126 |
| 131 int get selectionStart(); | 127 int get selectionStart(); |
| 132 | 128 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 void select(); | 185 void select(); |
| 190 | 186 |
| 191 void setCustomValidity(String error); | 187 void setCustomValidity(String error); |
| 192 | 188 |
| 193 void setSelectionRange(int start, int end, [String direction]); | 189 void setSelectionRange(int start, int end, [String direction]); |
| 194 | 190 |
| 195 void stepDown([int n]); | 191 void stepDown([int n]); |
| 196 | 192 |
| 197 void stepUp([int n]); | 193 void stepUp([int n]); |
| 198 } | 194 } |
| OLD | NEW |