(e: KeyboardEvent)
| 568 | } |
| 569 | |
| 570 | async _handleHome(e: KeyboardEvent) { |
| 571 | e.preventDefault(); |
| 572 | this._changePageIndex(0, { moveFocus: true }); |
| 573 | await renderFinished(); |
| 574 | this.focusItem(); |
| 575 | } |
| 576 | |
| 577 | async _handleEnd(e: KeyboardEvent) { |
| 578 | e.preventDefault(); |
no test coverage detected