| OLD | NEW |
| 1 | 1 |
| 2 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
ive "*HTMLInputElement" { | 2 class _HTMLInputElementJs extends _HTMLElementJs implements HTMLInputElement nat
ive "*HTMLInputElement" { |
| 3 | 3 |
| 4 String get accept() native "return this.accept;"; | 4 String get accept() native "return this.accept;"; |
| 5 | 5 |
| 6 void set accept(String value) native "this.accept = value;"; | 6 void set accept(String value) native "this.accept = value;"; |
| 7 | 7 |
| 8 String get align() native "return this.align;"; | 8 String get align() native "return this.align;"; |
| 9 | 9 |
| 10 void set align(String value) native "this.align = value;"; | 10 void set align(String value) native "this.align = value;"; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 bool get incremental() native "return this.incremental;"; | 68 bool get incremental() native "return this.incremental;"; |
| 69 | 69 |
| 70 void set incremental(bool value) native "this.incremental = value;"; | 70 void set incremental(bool value) native "this.incremental = value;"; |
| 71 | 71 |
| 72 bool get indeterminate() native "return this.indeterminate;"; | 72 bool get indeterminate() native "return this.indeterminate;"; |
| 73 | 73 |
| 74 void set indeterminate(bool value) native "this.indeterminate = value;"; | 74 void set indeterminate(bool value) native "this.indeterminate = value;"; |
| 75 | 75 |
| 76 _NodeListJs get labels() native "return this.labels;"; | 76 _NodeListJs get labels() native "return this.labels;"; |
| 77 | 77 |
| 78 _HTMLElementJs get list() native "return this.list;"; | |
| 79 | |
| 80 String get max() native "return this.max;"; | 78 String get max() native "return this.max;"; |
| 81 | 79 |
| 82 void set max(String value) native "this.max = value;"; | 80 void set max(String value) native "this.max = value;"; |
| 83 | 81 |
| 84 int get maxLength() native "return this.maxLength;"; | 82 int get maxLength() native "return this.maxLength;"; |
| 85 | 83 |
| 86 void set maxLength(int value) native "this.maxLength = value;"; | 84 void set maxLength(int value) native "this.maxLength = value;"; |
| 87 | 85 |
| 88 String get min() native "return this.min;"; | 86 String get min() native "return this.min;"; |
| 89 | 87 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 106 void set placeholder(String value) native "this.placeholder = value;"; | 104 void set placeholder(String value) native "this.placeholder = value;"; |
| 107 | 105 |
| 108 bool get readOnly() native "return this.readOnly;"; | 106 bool get readOnly() native "return this.readOnly;"; |
| 109 | 107 |
| 110 void set readOnly(bool value) native "this.readOnly = value;"; | 108 void set readOnly(bool value) native "this.readOnly = value;"; |
| 111 | 109 |
| 112 bool get required() native "return this.required;"; | 110 bool get required() native "return this.required;"; |
| 113 | 111 |
| 114 void set required(bool value) native "this.required = value;"; | 112 void set required(bool value) native "this.required = value;"; |
| 115 | 113 |
| 116 _HTMLOptionElementJs get selectedOption() native "return this.selectedOption;"
; | |
| 117 | |
| 118 String get selectionDirection() native "return this.selectionDirection;"; | 114 String get selectionDirection() native "return this.selectionDirection;"; |
| 119 | 115 |
| 120 void set selectionDirection(String value) native "this.selectionDirection = va
lue;"; | 116 void set selectionDirection(String value) native "this.selectionDirection = va
lue;"; |
| 121 | 117 |
| 122 int get selectionEnd() native "return this.selectionEnd;"; | 118 int get selectionEnd() native "return this.selectionEnd;"; |
| 123 | 119 |
| 124 void set selectionEnd(int value) native "this.selectionEnd = value;"; | 120 void set selectionEnd(int value) native "this.selectionEnd = value;"; |
| 125 | 121 |
| 126 int get selectionStart() native "return this.selectionStart;"; | 122 int get selectionStart() native "return this.selectionStart;"; |
| 127 | 123 |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 void select() native; | 180 void select() native; |
| 185 | 181 |
| 186 void setCustomValidity(String error) native; | 182 void setCustomValidity(String error) native; |
| 187 | 183 |
| 188 void setSelectionRange(int start, int end, [String direction = null]) native; | 184 void setSelectionRange(int start, int end, [String direction = null]) native; |
| 189 | 185 |
| 190 void stepDown([int n = null]) native; | 186 void stepDown([int n = null]) native; |
| 191 | 187 |
| 192 void stepUp([int n = null]) native; | 188 void stepUp([int n = null]) native; |
| 193 } | 189 } |
| OLD | NEW |