(payload)
| 246 | } |
| 247 | |
| 248 | export function contextmenu(payload) { |
| 249 | return createMouseEvent('contextmenu', { |
| 250 | ...payload, |
| 251 | detail: 0, |
| 252 | }); |
| 253 | } |
| 254 | |
| 255 | export function dragstart(payload) { |
| 256 | return createMouseEvent('dragstart', { |
nothing calls this directly
no test coverage detected