(root: DocumentOrShadowRoot)
| 220 | } |
| 221 | |
| 222 | deepActive(root: DocumentOrShadowRoot): Element | null { |
| 223 | if (root?.activeElement?.shadowRoot?.activeElement) { |
| 224 | return this.deepActive(root.activeElement.shadowRoot); |
| 225 | } |
| 226 | |
| 227 | return root.activeElement; |
| 228 | } |
| 229 | |
| 230 | destroy() { |
| 231 | this.removeEventListeners(); |
no outgoing calls
no test coverage detected