(
dispatchFocusEvent: (target: DOMElement, event: FocusEvent) => boolean,
)
| 19 | private focusStack: DOMElement[] = [] |
| 20 | |
| 21 | constructor( |
| 22 | dispatchFocusEvent: (target: DOMElement, event: FocusEvent) => boolean, |
| 23 | ) { |
| 24 | this.dispatchFocusEvent = dispatchFocusEvent |
| 25 | } |
| 26 | |
| 27 | focus(node: DOMElement): void { |
| 28 | if (node === this.activeElement) return |
nothing calls this directly
no outgoing calls
no test coverage detected