* Handle focus events - record for dropdown correlation
(event)
| 53 | * Handle focus events - record for dropdown correlation |
| 54 | */ |
| 55 | handleFocus(event) { |
| 56 | const target = event.target; |
| 57 | |
| 58 | // Only track focusable form elements |
| 59 | if (!this.isFormElement(target)) return; |
| 60 | |
| 61 | // Record focus for dropdown detection correlation |
| 62 | if (this.dropdownDetector) { |
| 63 | this.dropdownDetector.recordFocus(target); |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Check if element is a form input element |
nothing calls this directly
no test coverage detected