| OLD | NEW |
| 1 | 1 |
| 2 class HTMLTextAreaElement extends HTMLElement native "HTMLTextAreaElement" { | 2 class HTMLTextAreaElement extends HTMLElement native "*HTMLTextAreaElement" { |
| 3 | 3 |
| 4 String accessKey; | 4 String accessKey; |
| 5 | 5 |
| 6 bool autofocus; | 6 bool autofocus; |
| 7 | 7 |
| 8 int cols; | 8 int cols; |
| 9 | 9 |
| 10 String defaultValue; | 10 String defaultValue; |
| 11 | 11 |
| 12 bool disabled; | 12 bool disabled; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 String wrap; | 48 String wrap; |
| 49 | 49 |
| 50 bool checkValidity() native; | 50 bool checkValidity() native; |
| 51 | 51 |
| 52 void select() native; | 52 void select() native; |
| 53 | 53 |
| 54 void setCustomValidity(String error) native; | 54 void setCustomValidity(String error) native; |
| 55 | 55 |
| 56 void setSelectionRange(int start, int end, [String direction = null]) native; | 56 void setSelectionRange(int start, int end, [String direction = null]) native; |
| 57 } | 57 } |
| OLD | NEW |