Awkward "Quick Find within link-text only" shortcut placement on AZERTY keyboards
Categories
(Firefox :: Keyboard Navigation, defect, P3)
Tracking
()
People
(Reporter: vilcegt, Unassigned)
Details
Attachments
(1 file)
|
7.78 KB,
image/png
|
Details |
Comment 1•8 years ago
|
||
Updated•8 years ago
|
Comment 2•7 years ago
|
||
Hello,
I think this is similar to https://github.com/webcompat/web-bugs/issues/32460, which the user reported normal (expected) behavior in other browsers.
Hi,
In your case the problem seems to come from the websites themselves: they use event.key rather than event.code for checking key presses, which does not translate well for azerty keyboards.
For example, the shortcut for slowing Youtube videos is the second key from right shift: the . key on qwerty keyboards. But because it checks for event.key === ".", you need to "type" a period. And on azerty keyboards you type a period by pressing the third key from right shift while holding shift (see azerty layout on my previous message). The proper check should be event.code === "Period" as it checks for the physical key press rather than what you type.
This bug report is about the quick find shortcut from Firefox itself:
- On qwerty: it is on the ' key, which is under the Escape key.
- On azerty : is is also on the ' key, which is under the F3 key (and is the key which is used for 4).
The shortcut should be moved to ² on azerty keyboards, which would effectively be under the Escape key.
| Comment hidden (abusive-reviewed, off-topic) |
Updated•3 years ago
|
Description
•