(e: FocusEvent)
| 172 | } |
| 173 | |
| 174 | function appFocusOut(e: FocusEvent) { |
| 175 | focusLog("focusout", getElemAsStr(e.target), "=>", getElemAsStr(e.relatedTarget)); |
| 176 | } |
| 177 | |
| 178 | function appSelectionChange(e: Event) { |
| 179 | const selection = document.getSelection(); |
nothing calls this directly
no test coverage detected