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