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 ButtonElement extends Element { | |
8 | |
9 String get accessKey(); | |
10 | |
11 void set accessKey(String value); | |
12 | |
13 bool get autofocus(); | |
14 | |
15 void set autofocus(bool value); | |
16 | |
17 bool get disabled(); | |
18 | |
19 void set disabled(bool value); | |
20 | |
21 FormElement get form(); | |
22 | |
23 String get formAction(); | |
24 | |
25 void set formAction(String value); | |
26 | |
27 String get formEnctype(); | |
28 | |
29 void set formEnctype(String value); | |
30 | |
31 String get formMethod(); | |
32 | |
33 void set formMethod(String value); | |
34 | |
35 bool get formNoValidate(); | |
36 | |
37 void set formNoValidate(bool value); | |
38 | |
39 String get formTarget(); | |
40 | |
41 void set formTarget(String value); | |
42 | |
43 ElementList get labels(); | |
44 | |
45 String get name(); | |
46 | |
47 void set name(String value); | |
48 | |
49 String get type(); | |
50 | |
51 String get validationMessage(); | |
52 | |
53 ValidityState get validity(); | |
54 | |
55 String get value(); | |
56 | |
57 void set value(String value); | |
58 | |
59 bool get willValidate(); | |
60 | |
61 bool checkValidity(); | |
62 | |
63 void click(); | |
64 | |
65 void setCustomValidity(String error); | |
66 } | |
OLD | NEW |