| OLD | NEW |
| 1 | 1 |
| 2 class HTMLInputElement extends HTMLElement native "HTMLInputElement" { | 2 class HTMLInputElement extends HTMLElement native "HTMLInputElement" { |
| 3 | 3 |
| 4 String accept; | 4 String accept; |
| 5 | 5 |
| 6 String accessKey; |
| 7 |
| 6 String align; | 8 String align; |
| 7 | 9 |
| 8 String alt; | 10 String alt; |
| 9 | 11 |
| 10 String autocomplete; | 12 String autocomplete; |
| 11 | 13 |
| 12 bool autofocus; | 14 bool autofocus; |
| 13 | 15 |
| 14 bool checked; | 16 bool checked; |
| 15 | 17 |
| 16 bool defaultChecked; | 18 bool defaultChecked; |
| 17 | 19 |
| 18 String defaultValue; | 20 String defaultValue; |
| 19 | 21 |
| 20 String dirName; | |
| 21 | |
| 22 bool disabled; | 22 bool disabled; |
| 23 | 23 |
| 24 FileList files; | 24 FileList files; |
| 25 | 25 |
| 26 HTMLFormElement form; | 26 HTMLFormElement form; |
| 27 | 27 |
| 28 String formAction; | 28 String formAction; |
| 29 | 29 |
| 30 String formEnctype; | 30 String formEnctype; |
| 31 | 31 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 void select() native; | 104 void select() native; |
| 105 | 105 |
| 106 void setCustomValidity(String error) native; | 106 void setCustomValidity(String error) native; |
| 107 | 107 |
| 108 void setSelectionRange(int start, int end, [String direction = null]) native; | 108 void setSelectionRange(int start, int end, [String direction = null]) native; |
| 109 | 109 |
| 110 void stepDown([int n = null]) native; | 110 void stepDown([int n = null]) native; |
| 111 | 111 |
| 112 void stepUp([int n = null]) native; | 112 void stepUp([int n = null]) native; |
| 113 } | 113 } |
| OLD | NEW |