| 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 HTMLTextAreaElement |
| 10 interface TextAreaElement extends Element default _Elements { |
| 11 |
| 12 TextAreaElement(); |
| 13 |
| 14 /** @domName HTMLTextAreaElement.autofocus */ |
| 15 bool autofocus; |
| 16 |
| 17 /** @domName HTMLTextAreaElement.cols */ |
| 18 int cols; |
| 19 |
| 20 /** @domName HTMLTextAreaElement.defaultValue */ |
| 21 String defaultValue; |
| 22 |
| 23 /** @domName HTMLTextAreaElement.disabled */ |
| 24 bool disabled; |
| 25 |
| 26 /** @domName HTMLTextAreaElement.form */ |
| 27 final FormElement form; |
| 28 |
| 29 /** @domName HTMLTextAreaElement.labels */ |
| 30 final NodeList labels; |
| 31 |
| 32 /** @domName HTMLTextAreaElement.maxLength */ |
| 33 int maxLength; |
| 34 |
| 35 /** @domName HTMLTextAreaElement.name */ |
| 36 String name; |
| 37 |
| 38 /** @domName HTMLTextAreaElement.placeholder */ |
| 39 String placeholder; |
| 40 |
| 41 /** @domName HTMLTextAreaElement.readOnly */ |
| 42 bool readOnly; |
| 43 |
| 44 /** @domName HTMLTextAreaElement.required */ |
| 45 bool required; |
| 46 |
| 47 /** @domName HTMLTextAreaElement.rows */ |
| 48 int rows; |
| 49 |
| 50 /** @domName HTMLTextAreaElement.selectionDirection */ |
| 51 String selectionDirection; |
| 52 |
| 53 /** @domName HTMLTextAreaElement.selectionEnd */ |
| 54 int selectionEnd; |
| 55 |
| 56 /** @domName HTMLTextAreaElement.selectionStart */ |
| 57 int selectionStart; |
| 58 |
| 59 /** @domName HTMLTextAreaElement.textLength */ |
| 60 final int textLength; |
| 61 |
| 62 /** @domName HTMLTextAreaElement.type */ |
| 63 final String type; |
| 64 |
| 65 /** @domName HTMLTextAreaElement.validationMessage */ |
| 66 final String validationMessage; |
| 67 |
| 68 /** @domName HTMLTextAreaElement.validity */ |
| 69 final ValidityState validity; |
| 70 |
| 71 /** @domName HTMLTextAreaElement.value */ |
| 72 String value; |
| 73 |
| 74 /** @domName HTMLTextAreaElement.willValidate */ |
| 75 final bool willValidate; |
| 76 |
| 77 /** @domName HTMLTextAreaElement.wrap */ |
| 78 String wrap; |
| 79 |
| 80 /** @domName HTMLTextAreaElement.checkValidity */ |
| 81 bool checkValidity(); |
| 82 |
| 83 /** @domName HTMLTextAreaElement.select */ |
| 84 void select(); |
| 85 |
| 86 /** @domName HTMLTextAreaElement.setCustomValidity */ |
| 87 void setCustomValidity(String error); |
| 88 |
| 89 /** @domName HTMLTextAreaElement.setSelectionRange */ |
| 90 void setSelectionRange(int start, int end, [String direction]); |
| 91 } |
| OLD | NEW |