| OLD | NEW |
| (Empty) |
| 1 | |
| 2 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
ive "*HTMLInputElement" { | |
| 3 | |
| 4 String accept; | |
| 5 | |
| 6 String align; | |
| 7 | |
| 8 String alt; | |
| 9 | |
| 10 String autocomplete; | |
| 11 | |
| 12 bool autofocus; | |
| 13 | |
| 14 bool checked; | |
| 15 | |
| 16 bool defaultChecked; | |
| 17 | |
| 18 String defaultValue; | |
| 19 | |
| 20 String dirName; | |
| 21 | |
| 22 bool disabled; | |
| 23 | |
| 24 final _FileListJs files; | |
| 25 | |
| 26 final _HTMLFormElementJs form; | |
| 27 | |
| 28 String formAction; | |
| 29 | |
| 30 String formEnctype; | |
| 31 | |
| 32 String formMethod; | |
| 33 | |
| 34 bool formNoValidate; | |
| 35 | |
| 36 String formTarget; | |
| 37 | |
| 38 bool incremental; | |
| 39 | |
| 40 bool indeterminate; | |
| 41 | |
| 42 final _NodeListJs labels; | |
| 43 | |
| 44 String max; | |
| 45 | |
| 46 int maxLength; | |
| 47 | |
| 48 String min; | |
| 49 | |
| 50 bool multiple; | |
| 51 | |
| 52 String name; | |
| 53 | |
| 54 String pattern; | |
| 55 | |
| 56 String placeholder; | |
| 57 | |
| 58 bool readOnly; | |
| 59 | |
| 60 bool required; | |
| 61 | |
| 62 String selectionDirection; | |
| 63 | |
| 64 int selectionEnd; | |
| 65 | |
| 66 int selectionStart; | |
| 67 | |
| 68 int size; | |
| 69 | |
| 70 String src; | |
| 71 | |
| 72 String step; | |
| 73 | |
| 74 String type; | |
| 75 | |
| 76 String useMap; | |
| 77 | |
| 78 final String validationMessage; | |
| 79 | |
| 80 final _ValidityStateJs validity; | |
| 81 | |
| 82 String value; | |
| 83 | |
| 84 Date valueAsDate; | |
| 85 | |
| 86 num valueAsNumber; | |
| 87 | |
| 88 bool webkitGrammar; | |
| 89 | |
| 90 bool webkitSpeech; | |
| 91 | |
| 92 bool webkitdirectory; | |
| 93 | |
| 94 final bool willValidate; | |
| 95 | |
| 96 bool checkValidity() native; | |
| 97 | |
| 98 void select() native; | |
| 99 | |
| 100 void setCustomValidity(String error) native; | |
| 101 | |
| 102 void setSelectionRange(int start, int end, [String direction = null]) native; | |
| 103 | |
| 104 void stepDown([int n = null]) native; | |
| 105 | |
| 106 void stepUp([int n = null]) native; | |
| 107 } | |
| OLD | NEW |