(payload)
| 272 | } |
| 273 | |
| 274 | export function virtualclick(payload) { |
| 275 | return createMouseEvent('click', { |
| 276 | button: 0, |
| 277 | ...payload, |
| 278 | buttons: 0, |
| 279 | detail: 0, |
| 280 | height: 1, |
| 281 | pageX: 0, |
| 282 | pageY: 0, |
| 283 | pressure: 0, |
| 284 | screenX: 0, |
| 285 | screenY: 0, |
| 286 | width: 1, |
| 287 | x: 0, |
| 288 | y: 0, |
| 289 | }); |
| 290 | } |
| 291 | |
| 292 | /** |
| 293 | * Key events |
nothing calls this directly
no test coverage detected