OLD | NEW |
| (Empty) |
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 | |
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 get autofocus(); | |
10 | |
11 void set autofocus(bool value); | |
12 | |
13 bool get disabled(); | |
14 | |
15 void set disabled(bool value); | |
16 | |
17 FormElement get form(); | |
18 | |
19 ElementList get labels(); | |
20 | |
21 int get length(); | |
22 | |
23 void set length(int value); | |
24 | |
25 bool get multiple(); | |
26 | |
27 void set multiple(bool value); | |
28 | |
29 String get name(); | |
30 | |
31 void set name(String value); | |
32 | |
33 ElementList get options(); | |
34 | |
35 bool get required(); | |
36 | |
37 void set required(bool value); | |
38 | |
39 int get selectedIndex(); | |
40 | |
41 void set selectedIndex(int value); | |
42 | |
43 int get size(); | |
44 | |
45 void set size(int value); | |
46 | |
47 String get type(); | |
48 | |
49 String get validationMessage(); | |
50 | |
51 ValidityState get validity(); | |
52 | |
53 String get value(); | |
54 | |
55 void set value(String value); | |
56 | |
57 bool get willValidate(); | |
58 | |
59 void add(Element element, Element before); | |
60 | |
61 bool checkValidity(); | |
62 | |
63 Node item(int index); | |
64 | |
65 Node namedItem(String name); | |
66 | |
67 void setCustomValidity(String error); | |
68 } | |
OLD | NEW |