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

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

Issue 8835006: New version of dart:html (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix typos Created 9 years 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 InputElement extends Element { 7 interface InputElement extends Element {
8 8
9 String get accept(); 9 String get accept();
10 10
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 void set min(String value); 95 void set min(String value);
96 96
97 bool get multiple(); 97 bool get multiple();
98 98
99 void set multiple(bool value); 99 void set multiple(bool value);
100 100
101 String get name(); 101 String get name();
102 102
103 void set name(String value); 103 void set name(String value);
104 104
105 EventListener get onwebkitspeechchange();
106
107 void set onwebkitspeechchange(EventListener value);
108
109 String get pattern(); 105 String get pattern();
110 106
111 void set pattern(String value); 107 void set pattern(String value);
112 108
113 String get placeholder(); 109 String get placeholder();
114 110
115 void set placeholder(String value); 111 void set placeholder(String value);
116 112
117 bool get readOnly(); 113 bool get readOnly();
118 114
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 bool checkValidity(); 185 bool checkValidity();
190 186
191 void click(); 187 void click();
192 188
193 void select(); 189 void select();
194 190
195 void setCustomValidity(String error); 191 void setCustomValidity(String error);
196 192
197 void setSelectionRange(int start, int end, [String direction]); 193 void setSelectionRange(int start, int end, [String direction]);
198 194
199 void setValueForUser(String value);
200
201 void stepDown([int n]); 195 void stepDown([int n]);
202 196
203 void stepUp([int n]); 197 void stepUp([int n]);
204 } 198 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698