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 HTMLKeygenElement extends HTMLElement { | |
8 | |
9 bool autofocus; | |
10 | |
11 String challenge; | |
12 | |
13 bool disabled; | |
14 | |
15 final HTMLFormElement form; | |
16 | |
17 String keytype; | |
18 | |
19 final NodeList labels; | |
20 | |
21 String name; | |
22 | |
23 final String type; | |
24 | |
25 final String validationMessage; | |
26 | |
27 final ValidityState validity; | |
28 | |
29 final bool willValidate; | |
30 | |
31 bool checkValidity(); | |
32 | |
33 void setCustomValidity(String error); | |
34 } | |
OLD | NEW |