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

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

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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 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
13 String get align(); 17 String get align();
14 18
15 void set align(String value); 19 void set align(String value);
16 20
17 String get alt(); 21 String get alt();
18 22
19 void set alt(String value); 23 void set alt(String value);
20 24
21 String get autocomplete(); 25 String get autocomplete();
22 26
23 void set autocomplete(String value); 27 void set autocomplete(String value);
24 28
25 bool get autofocus(); 29 bool get autofocus();
26 30
27 void set autofocus(bool value); 31 void set autofocus(bool value);
28 32
29 bool get checked(); 33 bool get checked();
30 34
31 void set checked(bool value); 35 void set checked(bool value);
32 36
33 bool get defaultChecked(); 37 bool get defaultChecked();
34 38
35 void set defaultChecked(bool value); 39 void set defaultChecked(bool value);
36 40
37 String get defaultValue(); 41 String get defaultValue();
38 42
39 void set defaultValue(String value); 43 void set defaultValue(String value);
40 44
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
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 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLElement.dart ('k') | client/dom/generated/src/interface/HTMLLabelElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698