| 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; | 6 String accessKey; |
| 7 | 7 |
| 8 String align; | 8 String align; |
| 9 | 9 |
| 10 String alt; | 10 String alt; |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 bool checkValidity() native; | 102 bool checkValidity() native; |
| 103 | 103 |
| 104 void click() native; | 104 void click() native; |
| 105 | 105 |
| 106 void select() native; | 106 void select() native; |
| 107 | 107 |
| 108 void setCustomValidity(String error) native; | 108 void setCustomValidity(String error) native; |
| 109 | 109 |
| 110 void setSelectionRange(int start, int end, [String direction = null]) native; | 110 void setSelectionRange(int start, int end, [String direction = null]) native; |
| 111 | 111 |
| 112 void setValueForUser(String value) native; | |
| 113 | |
| 114 void stepDown([int n = null]) native; | 112 void stepDown([int n = null]) native; |
| 115 | 113 |
| 116 void stepUp([int n = null]) native; | 114 void stepUp([int n = null]) native; |
| 117 } | 115 } |
| OLD | NEW |