Bug 301110
| Summary: | [GTK] [WPE] [Win] [WKTR] Unpaired keydown/pointerdown events do not produce an event timing entry | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Franco Vieira de Souza <franco_vieira> |
| Component: | New Bugs | Assignee: | Nobody <webkit-unassigned> |
| Status: | NEW | ||
| Severity: | Normal | ||
| Priority: | P2 | ||
| Version: | Safari 26 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Franco Vieira de Souza
During tests, GTK and WPE fail to produce an event timing entry if the keydown/keyup (or pointerdown/pointerup) events are emitted in separate action chains, such as in the following example:
```
await new test_driver.Actions()
.keyDown('a')
.send()
await something()
await new test_driver.Actions()
.keyUp('a')
.send()
```
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Franco Vieira de Souza
Also affects Windows: https://ews-build.webkit.org/#/builders/60/builds/64842.
Sam Sneddon [:gsnedders]
(In reply to Franco Vieira de Souza from comment #1)
> Also affects Windows:
> https://ews-build.webkit.org/#/builders/60/builds/64842.
For Windows this might be expected, given down v. up timing of events differs at a platform level.