()
| 596 | } |
| 597 | |
| 598 | _getFocusableElements(): HTMLElement[] { |
| 599 | const focusDomRef = this.getFocusDomRef()!; |
| 600 | return getTabbableElements(focusDomRef); |
| 601 | } |
| 602 | |
| 603 | _indexOfActiveElement(focusables: HTMLElement[]): number { |
| 604 | const activeElement = getActiveElement() as HTMLElement; |
nothing calls this directly
no test coverage detected