Bug 185971
Summary: | E.g., Ctrl + A shouldn't fire keypress event | ||
---|---|---|---|
Product: | WebKit | Reporter: | Masayuki Nakano <masayuki> |
Component: | UI Events | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED DUPLICATE | ||
Severity: | Normal | CC: | a_protyasha, ap, bfulgham, cdumez, dbates, karlcow, rniwa, webkit-bug-importer, wenson_hsieh |
Priority: | P2 | Keywords: | BrowserCompat, InRadar |
Version: | Safari 11 | ||
Hardware: | Unspecified | ||
OS: | Unspecified | ||
URL: | https://w3c.github.io/uievents/tools/key-event-viewer.html | ||
See Also: |
https://bugs.webkit.org/show_bug.cgi?id=28409 https://bugs.webkit.org/show_bug.cgi?id=190571 https://bugs.webkit.org/show_bug.cgi?id=30397 |
Masayuki Nakano
1. Go to https://w3c.github.io/uievents/tools/key-event-viewer.html
2. Move focus to the <input>
3. Type control + A
4. Type control + option + A
5. Check the "Read only" checkbox
6. Type control + A
7. Type control + option + A
Expected Result:
At #3, #4, #6, #7, keypress events won't be fired since keypress events should be fired "f and only if that key normally produces a character value".
https://www.w3.org/TR/uievents/#event-type-keypress
Actual Result:
#3 does not fire keypress event (as expected)
#4 fires keypress event whose charCode is 1 (invalid)
#6 fires keypress event whose charCode is 1 (invalid)
#7 fires keypress event whose charCode is 1 (invalid)
Firefox will stop dispatching those keypress events.
Chromium also has same bug.
And I found bug 28409 which requests to dispatch keypress events for such non-printable key combinations, but this is clearly invalid for the latest UI Events.
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Lucas Forschler
Mass move bugs into the DOM component.
Ryosuke Niwa
This belongs in UI events.
Radar WebKit Bug Importer
<rdar://problem/122586679>
Abrar Rahman Protyasha
This is the same root cause as https://bugs.webkit.org/show_bug.cgi?id=30397, which has some prior discussion. Duping.
*** This bug has been marked as a duplicate of bug 30397 ***