(e: FocusEvent)
| 483 | } |
| 484 | |
| 485 | _onHeaderFocusin(e: FocusEvent) { |
| 486 | const tab = getTabInStrip(e.target as HTMLElement); |
| 487 | |
| 488 | if (tab) { |
| 489 | this._itemNavigation.setCurrentItem(tab.realTabReference); |
| 490 | } |
| 491 | } |
| 492 | |
| 493 | _onDragStart(e: DragEvent) { |
| 494 | if (!e.dataTransfer || !(e.target instanceof HTMLElement)) { |
nothing calls this directly
no test coverage detected