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

Side by Side Diff: client/html/generated/html/frog/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
2 class _InputElementImpl extends _ElementImpl implements InputElement native "*HT MLInputElement" {
3
4 String accept;
5
6 String align;
7
8 String alt;
9
10 String autocomplete;
11
12 bool autofocus;
13
14 bool checked;
15
16 bool defaultChecked;
17
18 String defaultValue;
19
20 bool disabled;
21
22 final _FileListImpl files;
23
24 final _FormElementImpl form;
25
26 String formAction;
27
28 String formEnctype;
29
30 String formMethod;
31
32 bool formNoValidate;
33
34 String formTarget;
35
36 bool incremental;
37
38 bool indeterminate;
39
40 final _NodeListImpl labels;
41
42 String max;
43
44 int maxLength;
45
46 String min;
47
48 bool multiple;
49
50 String name;
51
52 String pattern;
53
54 String placeholder;
55
56 bool readOnly;
57
58 bool required;
59
60 String selectionDirection;
61
62 int selectionEnd;
63
64 int selectionStart;
65
66 int size;
67
68 String src;
69
70 String step;
71
72 String type;
73
74 String useMap;
75
76 final String validationMessage;
77
78 final _ValidityStateImpl validity;
79
80 String value;
81
82 Date valueAsDate;
83
84 num valueAsNumber;
85
86 bool webkitGrammar;
87
88 bool webkitSpeech;
89
90 bool webkitdirectory;
91
92 final bool willValidate;
93
94 _InputElementEventsImpl get on() =>
95 new _InputElementEventsImpl(this);
96
97 bool checkValidity() native;
98
99 void select() native;
100
101 void setCustomValidity(String error) native;
102
103 void setSelectionRange(int start, int end, [String direction = null]) native;
104
105 void stepDown([int n = null]) native;
106
107 void stepUp([int n = null]) native;
108 }
109
110 class _InputElementEventsImpl extends _ElementEventsImpl implements InputElement Events {
111 _InputElementEventsImpl(_ptr) : super(_ptr);
112
113 EventListenerList get speechChange() => _get('webkitSpeechChange');
114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698