()
| 42 | } |
| 43 | |
| 44 | blur(): void { |
| 45 | if (!this.activeElement) return |
| 46 | |
| 47 | const previous = this.activeElement |
| 48 | this.activeElement = null |
| 49 | this.dispatchFocusEvent(previous, new FocusEvent('blur', null)) |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Called by the reconciler when a node is removed from the tree. |
nothing calls this directly
no outgoing calls
no test coverage detected