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

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

Issue 9323028: Support 'Conditional' idl attribute. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 bool get incremental(); 73 bool get incremental();
74 74
75 void set incremental(bool value); 75 void set incremental(bool value);
76 76
77 bool get indeterminate(); 77 bool get indeterminate();
78 78
79 void set indeterminate(bool value); 79 void set indeterminate(bool value);
80 80
81 NodeList get labels(); 81 NodeList get labels();
82 82
83 HTMLElement get list();
84
85 String get max(); 83 String get max();
86 84
87 void set max(String value); 85 void set max(String value);
88 86
89 int get maxLength(); 87 int get maxLength();
90 88
91 void set maxLength(int value); 89 void set maxLength(int value);
92 90
93 String get min(); 91 String get min();
94 92
(...skipping 16 matching lines...) Expand all
111 void set placeholder(String value); 109 void set placeholder(String value);
112 110
113 bool get readOnly(); 111 bool get readOnly();
114 112
115 void set readOnly(bool value); 113 void set readOnly(bool value);
116 114
117 bool get required(); 115 bool get required();
118 116
119 void set required(bool value); 117 void set required(bool value);
120 118
121 HTMLOptionElement get selectedOption();
122
123 String get selectionDirection(); 119 String get selectionDirection();
124 120
125 void set selectionDirection(String value); 121 void set selectionDirection(String value);
126 122
127 int get selectionEnd(); 123 int get selectionEnd();
128 124
129 void set selectionEnd(int value); 125 void set selectionEnd(int value);
130 126
131 int get selectionStart(); 127 int get selectionStart();
132 128
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 void select(); 185 void select();
190 186
191 void setCustomValidity(String error); 187 void setCustomValidity(String error);
192 188
193 void setSelectionRange(int start, int end, [String direction]); 189 void setSelectionRange(int start, int end, [String direction]);
194 190
195 void stepDown([int n]); 191 void stepDown([int n]);
196 192
197 void stepUp([int n]); 193 void stepUp([int n]);
198 } 194 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698