| OLD | NEW |
| 1 | 1 |
| 2 class HTMLTextAreaElement extends HTMLElement native "*HTMLTextAreaElement" { | 2 class HTMLTextAreaElement extends HTMLElement native "*HTMLTextAreaElement" { |
| 3 | 3 |
| 4 String accessKey; | |
| 5 | |
| 6 bool autofocus; | 4 bool autofocus; |
| 7 | 5 |
| 8 int cols; | 6 int cols; |
| 9 | 7 |
| 10 String defaultValue; | 8 String defaultValue; |
| 11 | 9 |
| 10 String dirName; |
| 11 |
| 12 bool disabled; | 12 bool disabled; |
| 13 | 13 |
| 14 HTMLFormElement form; | 14 HTMLFormElement form; |
| 15 | 15 |
| 16 NodeList labels; | 16 NodeList labels; |
| 17 | 17 |
| 18 int maxLength; | 18 int maxLength; |
| 19 | 19 |
| 20 String name; | 20 String name; |
| 21 | 21 |
| (...skipping 26 matching lines...) Expand all 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 |