Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1059)

Side by Side Diff: client/dom/generated/src/interface/HTMLInputElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 accept;
10 10
11 void set accept(String value); 11 String align;
12 12
13 String get align(); 13 String alt;
14 14
15 void set align(String value); 15 String autocomplete;
16 16
17 String get alt(); 17 bool autofocus;
18 18
19 void set alt(String value); 19 bool checked;
20 20
21 String get autocomplete(); 21 bool defaultChecked;
22 22
23 void set autocomplete(String value); 23 String defaultValue;
24 24
25 bool get autofocus(); 25 String dirName;
26 26
27 void set autofocus(bool value); 27 bool disabled;
28 28
29 bool get checked(); 29 final FileList files;
30 30
31 void set checked(bool value); 31 final HTMLFormElement form;
32 32
33 bool get defaultChecked(); 33 String formAction;
34 34
35 void set defaultChecked(bool value); 35 String formEnctype;
36 36
37 String get defaultValue(); 37 String formMethod;
38 38
39 void set defaultValue(String value); 39 bool formNoValidate;
40 40
41 String get dirName(); 41 String formTarget;
42 42
43 void set dirName(String value); 43 bool incremental;
44 44
45 bool get disabled(); 45 bool indeterminate;
46 46
47 void set disabled(bool value); 47 final NodeList labels;
48 48
49 FileList get files(); 49 String max;
50 50
51 HTMLFormElement get form(); 51 int maxLength;
52 52
53 String get formAction(); 53 String min;
54 54
55 void set formAction(String value); 55 bool multiple;
56 56
57 String get formEnctype(); 57 String name;
58 58
59 void set formEnctype(String value); 59 String pattern;
60 60
61 String get formMethod(); 61 String placeholder;
62 62
63 void set formMethod(String value); 63 bool readOnly;
64 64
65 bool get formNoValidate(); 65 bool required;
66 66
67 void set formNoValidate(bool value); 67 String selectionDirection;
68 68
69 String get formTarget(); 69 int selectionEnd;
70 70
71 void set formTarget(String value); 71 int selectionStart;
72 72
73 bool get incremental(); 73 int size;
74 74
75 void set incremental(bool value); 75 String src;
76 76
77 bool get indeterminate(); 77 String step;
78 78
79 void set indeterminate(bool value); 79 String type;
80 80
81 NodeList get labels(); 81 String useMap;
82 82
83 String get max(); 83 final String validationMessage;
84 84
85 void set max(String value); 85 final ValidityState validity;
86 86
87 int get maxLength(); 87 String value;
88 88
89 void set maxLength(int value); 89 Date valueAsDate;
90 90
91 String get min(); 91 num valueAsNumber;
92 92
93 void set min(String value); 93 bool webkitGrammar;
94 94
95 bool get multiple(); 95 bool webkitSpeech;
96 96
97 void set multiple(bool value); 97 bool webkitdirectory;
98 98
99 String get name(); 99 final bool willValidate;
100
101 void set name(String value);
102
103 String get pattern();
104
105 void set pattern(String value);
106
107 String get placeholder();
108
109 void set placeholder(String value);
110
111 bool get readOnly();
112
113 void set readOnly(bool value);
114
115 bool get required();
116
117 void set required(bool value);
118
119 String get selectionDirection();
120
121 void set selectionDirection(String value);
122
123 int get selectionEnd();
124
125 void set selectionEnd(int value);
126
127 int get selectionStart();
128
129 void set selectionStart(int value);
130
131 int get size();
132
133 void set size(int value);
134
135 String get src();
136
137 void set src(String value);
138
139 String get step();
140
141 void set step(String value);
142
143 String get type();
144
145 void set type(String value);
146
147 String get useMap();
148
149 void set useMap(String value);
150
151 String get validationMessage();
152
153 ValidityState get validity();
154
155 String get value();
156
157 void set value(String value);
158
159 Date get valueAsDate();
160
161 void set valueAsDate(Date value);
162
163 num get valueAsNumber();
164
165 void set valueAsNumber(num value);
166
167 bool get webkitGrammar();
168
169 void set webkitGrammar(bool value);
170
171 bool get webkitSpeech();
172
173 void set webkitSpeech(bool value);
174
175 bool get webkitdirectory();
176
177 void set webkitdirectory(bool value);
178
179 bool get willValidate();
180 100
181 bool checkValidity(); 101 bool checkValidity();
182 102
183 void click(); 103 void click();
184 104
185 void select(); 105 void select();
186 106
187 void setCustomValidity(String error); 107 void setCustomValidity(String error);
188 108
189 void setSelectionRange(int start, int end, [String direction]); 109 void setSelectionRange(int start, int end, [String direction]);
190 110
191 void stepDown([int n]); 111 void stepDown([int n]);
192 112
193 void stepUp([int n]); 113 void stepUp([int n]);
194 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698