| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class HTMLInputElement extends HTMLElement native "HTMLInputElement" { |
| 3 |
| 4 String accept; |
| 5 |
| 6 String accessKey; |
| 7 |
| 8 String align; |
| 9 |
| 10 String alt; |
| 11 |
| 12 String autocomplete; |
| 13 |
| 14 bool autofocus; |
| 15 |
| 16 bool checked; |
| 17 |
| 18 bool defaultChecked; |
| 19 |
| 20 String defaultValue; |
| 21 |
| 22 bool disabled; |
| 23 |
| 24 FileList files; |
| 25 |
| 26 HTMLFormElement 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 NodeList labels; |
| 43 |
| 44 HTMLElement list; |
| 45 |
| 46 String max; |
| 47 |
| 48 int maxLength; |
| 49 |
| 50 String min; |
| 51 |
| 52 bool multiple; |
| 53 |
| 54 String name; |
| 55 |
| 56 EventListener onwebkitspeechchange; |
| 57 |
| 58 String pattern; |
| 59 |
| 60 String placeholder; |
| 61 |
| 62 bool readOnly; |
| 63 |
| 64 bool required; |
| 65 |
| 66 HTMLOptionElement selectedOption; |
| 67 |
| 68 String selectionDirection; |
| 69 |
| 70 int selectionEnd; |
| 71 |
| 72 int selectionStart; |
| 73 |
| 74 int size; |
| 75 |
| 76 String src; |
| 77 |
| 78 String step; |
| 79 |
| 80 String type; |
| 81 |
| 82 String useMap; |
| 83 |
| 84 String validationMessage; |
| 85 |
| 86 ValidityState validity; |
| 87 |
| 88 String value; |
| 89 |
| 90 Date valueAsDate; |
| 91 |
| 92 num valueAsNumber; |
| 93 |
| 94 bool webkitGrammar; |
| 95 |
| 96 bool webkitSpeech; |
| 97 |
| 98 bool webkitdirectory; |
| 99 |
| 100 bool willValidate; |
| 101 |
| 102 bool checkValidity() native; |
| 103 |
| 104 void click() native; |
| 105 |
| 106 void select() native; |
| 107 |
| 108 void setCustomValidity(String error) native; |
| 109 |
| 110 void setSelectionRange(int start, int end, [String direction = null]) native; |
| 111 |
| 112 void setValueForUser(String value) native; |
| 113 |
| 114 void stepDown([int n = null]) native; |
| 115 |
| 116 void stepUp([int n = null]) native; |
| 117 } |
| OLD | NEW |