(e: KeyboardEvent)
| 759 | } |
| 760 | |
| 761 | _handleHomeKey(e: KeyboardEvent) { |
| 762 | e.preventDefault(); |
| 763 | |
| 764 | if (this.readonly) { |
| 765 | return; |
| 766 | } |
| 767 | |
| 768 | this._changeSelectedItem(this._selectedIndex, 0); |
| 769 | } |
| 770 | |
| 771 | _handleEndKey(e: KeyboardEvent) { |
| 772 | e.preventDefault(); |
no test coverage detected