(payload)
| 253 | } |
| 254 | |
| 255 | export function dragstart(payload) { |
| 256 | return createMouseEvent('dragstart', { |
| 257 | ...payload, |
| 258 | detail: 0, |
| 259 | }); |
| 260 | } |
| 261 | |
| 262 | export function focus({relatedTarget} = {}) { |
| 263 | return new FocusEvent('focus', {relatedTarget}); |
nothing calls this directly
no test coverage detected