(e: KeyboardEvent)
| 575 | } |
| 576 | |
| 577 | async _handleEnd(e: KeyboardEvent) { |
| 578 | e.preventDefault(); |
| 579 | this._changePageIndex(this.items.length - 1, { moveFocus: true }); |
| 580 | await renderFinished(); |
| 581 | this.focusItem(); |
| 582 | } |
| 583 | |
| 584 | async _handlePageUp(e: KeyboardEvent) { |
| 585 | e.preventDefault(); |
no test coverage detected