| 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 HTMLOutputElement |
| 8 interface OutputElement extends Element default _Elements { |
| 9 |
| 10 OutputElement(); |
| 11 |
| 12 /** @domName HTMLOutputElement.defaultValue */ |
| 13 String defaultValue; |
| 14 |
| 15 /** @domName HTMLOutputElement.form */ |
| 16 final FormElement form; |
| 17 |
| 18 /** @domName HTMLOutputElement.htmlFor */ |
| 19 DOMSettableTokenList htmlFor; |
| 20 |
| 21 /** @domName HTMLOutputElement.labels */ |
| 22 final NodeList labels; |
| 23 |
| 24 /** @domName HTMLOutputElement.name */ |
| 25 String name; |
| 26 |
| 27 /** @domName HTMLOutputElement.type */ |
| 28 final String type; |
| 29 |
| 30 /** @domName HTMLOutputElement.validationMessage */ |
| 31 final String validationMessage; |
| 32 |
| 33 /** @domName HTMLOutputElement.validity */ |
| 34 final ValidityState validity; |
| 35 |
| 36 /** @domName HTMLOutputElement.value */ |
| 37 String value; |
| 38 |
| 39 /** @domName HTMLOutputElement.willValidate */ |
| 40 final bool willValidate; |
| 41 |
| 42 /** @domName HTMLOutputElement.checkValidity */ |
| 43 bool checkValidity(); |
| 44 |
| 45 /** @domName HTMLOutputElement.setCustomValidity */ |
| 46 void setCustomValidity(String error); |
| 47 } |
| OLD | NEW |