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

Side by Side Diff: client/html/generated/html/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) 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 InputElement extends Element {
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 bool disabled;
26
27 final FileList files;
28
29 final FormElement form;
30
31 String formAction;
32
33 String formEnctype;
34
35 String formMethod;
36
37 bool formNoValidate;
38
39 String formTarget;
40
41 bool incremental;
42
43 bool indeterminate;
44
45 final NodeList labels;
46
47 String max;
48
49 int maxLength;
50
51 String min;
52
53 bool multiple;
54
55 String name;
56
57 String pattern;
58
59 String placeholder;
60
61 bool readOnly;
62
63 bool required;
64
65 String selectionDirection;
66
67 int selectionEnd;
68
69 int selectionStart;
70
71 int size;
72
73 String src;
74
75 String step;
76
77 String type;
78
79 String useMap;
80
81 final String validationMessage;
82
83 final ValidityState validity;
84
85 String value;
86
87 Date valueAsDate;
88
89 num valueAsNumber;
90
91 bool webkitGrammar;
92
93 bool webkitSpeech;
94
95 bool webkitdirectory;
96
97 final bool willValidate;
98
99 InputElementEvents get on();
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 }
113
114 interface InputElementEvents extends ElementEvents {
115
116 EventListenerList get speechChange();
117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698