OLD | NEW |
| (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 SelectElement extends Element { | |
8 | |
9 bool autofocus; | |
10 | |
11 bool disabled; | |
12 | |
13 final FormElement form; | |
14 | |
15 final NodeList labels; | |
16 | |
17 int length; | |
18 | |
19 bool multiple; | |
20 | |
21 String name; | |
22 | |
23 final HTMLOptionsCollection options; | |
24 | |
25 bool required; | |
26 | |
27 int selectedIndex; | |
28 | |
29 int size; | |
30 | |
31 final String type; | |
32 | |
33 final String validationMessage; | |
34 | |
35 final ValidityState validity; | |
36 | |
37 String value; | |
38 | |
39 final bool willValidate; | |
40 | |
41 void add(Element element, Element before); | |
42 | |
43 bool checkValidity(); | |
44 | |
45 Node item(int index); | |
46 | |
47 Node namedItem(String name); | |
48 | |
49 void setCustomValidity(String error); | |
50 } | |
OLD | NEW |