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

Side by Side Diff: client/html/generated/src/interface/InputElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface InputElement extends Element {
8
9 String get accept();
10
11 void set accept(String value);
12
13 String get accessKey();
14
15 void set accessKey(String value);
16
17 String get align();
18
19 void set align(String value);
20
21 String get alt();
22
23 void set alt(String value);
24
25 String get autocomplete();
26
27 void set autocomplete(String value);
28
29 bool get autofocus();
30
31 void set autofocus(bool value);
32
33 bool get checked();
34
35 void set checked(bool value);
36
37 bool get defaultChecked();
38
39 void set defaultChecked(bool value);
40
41 String get defaultValue();
42
43 void set defaultValue(String value);
44
45 bool get disabled();
46
47 void set disabled(bool value);
48
49 FileList get files();
50
51 FormElement get form();
52
53 String get formAction();
54
55 void set formAction(String value);
56
57 String get formEnctype();
58
59 void set formEnctype(String value);
60
61 String get formMethod();
62
63 void set formMethod(String value);
64
65 bool get formNoValidate();
66
67 void set formNoValidate(bool value);
68
69 String get formTarget();
70
71 void set formTarget(String value);
72
73 bool get incremental();
74
75 void set incremental(bool value);
76
77 bool get indeterminate();
78
79 void set indeterminate(bool value);
80
81 ElementList get labels();
82
83 Element get list();
84
85 String get max();
86
87 void set max(String value);
88
89 int get maxLength();
90
91 void set maxLength(int value);
92
93 String get min();
94
95 void set min(String value);
96
97 bool get multiple();
98
99 void set multiple(bool value);
100
101 String get name();
102
103 void set name(String value);
104
105 String get pattern();
106
107 void set pattern(String value);
108
109 String get placeholder();
110
111 void set placeholder(String value);
112
113 bool get readOnly();
114
115 void set readOnly(bool value);
116
117 bool get required();
118
119 void set required(bool value);
120
121 OptionElement get selectedOption();
122
123 String get selectionDirection();
124
125 void set selectionDirection(String value);
126
127 int get selectionEnd();
128
129 void set selectionEnd(int value);
130
131 int get selectionStart();
132
133 void set selectionStart(int value);
134
135 int get size();
136
137 void set size(int value);
138
139 String get src();
140
141 void set src(String value);
142
143 String get step();
144
145 void set step(String value);
146
147 String get type();
148
149 void set type(String value);
150
151 String get useMap();
152
153 void set useMap(String value);
154
155 String get validationMessage();
156
157 ValidityState get validity();
158
159 String get value();
160
161 void set value(String value);
162
163 Date get valueAsDate();
164
165 void set valueAsDate(Date value);
166
167 num get valueAsNumber();
168
169 void set valueAsNumber(num value);
170
171 bool get webkitGrammar();
172
173 void set webkitGrammar(bool value);
174
175 bool get webkitSpeech();
176
177 void set webkitSpeech(bool value);
178
179 bool get webkitdirectory();
180
181 void set webkitdirectory(bool value);
182
183 bool get willValidate();
184
185 bool checkValidity();
186
187 void click();
188
189 void select();
190
191 void setCustomValidity(String error);
192
193 void setSelectionRange(int start, int end, [String direction]);
194
195 void stepDown([int n]);
196
197 void stepUp([int n]);
198 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698