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