OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // WARNING: Do not edit - generated code. | |
6 | |
7 interface HTMLInputElement extends HTMLElement { | |
8 | |
9 String accept; | |
10 | |
11 String align; | |
12 | |
13 String alt; | |
14 | |
15 String autocomplete; | |
16 | |
17 bool autofocus; | |
18 | |
19 bool checked; | |
20 | |
21 bool defaultChecked; | |
22 | |
23 String defaultValue; | |
24 | |
25 String dirName; | |
26 | |
27 bool disabled; | |
28 | |
29 final FileList files; | |
30 | |
31 final HTMLFormElement form; | |
32 | |
33 String formAction; | |
34 | |
35 String formEnctype; | |
36 | |
37 String formMethod; | |
38 | |
39 bool formNoValidate; | |
40 | |
41 String formTarget; | |
42 | |
43 bool incremental; | |
44 | |
45 bool indeterminate; | |
46 | |
47 final NodeList labels; | |
48 | |
49 String max; | |
50 | |
51 int maxLength; | |
52 | |
53 String min; | |
54 | |
55 bool multiple; | |
56 | |
57 String name; | |
58 | |
59 String pattern; | |
60 | |
61 String placeholder; | |
62 | |
63 bool readOnly; | |
64 | |
65 bool required; | |
66 | |
67 String selectionDirection; | |
68 | |
69 int selectionEnd; | |
70 | |
71 int selectionStart; | |
72 | |
73 int size; | |
74 | |
75 String src; | |
76 | |
77 String step; | |
78 | |
79 String type; | |
80 | |
81 String useMap; | |
82 | |
83 final String validationMessage; | |
84 | |
85 final ValidityState validity; | |
86 | |
87 String value; | |
88 | |
89 Date valueAsDate; | |
90 | |
91 num valueAsNumber; | |
92 | |
93 bool webkitGrammar; | |
94 | |
95 bool webkitSpeech; | |
96 | |
97 bool webkitdirectory; | |
98 | |
99 final bool willValidate; | |
100 | |
101 bool checkValidity(); | |
102 | |
103 void select(); | |
104 | |
105 void setCustomValidity(String error); | |
106 | |
107 void setSelectionRange(int start, int end, [String direction]); | |
108 | |
109 void stepDown([int n]); | |
110 | |
111 void stepUp([int n]); | |
112 } | |
OLD | NEW |