In short : Do browser shortcut keys depend on locale ?
More precisely :
The initial idea was to state whether disabling browser find by preventing default behavior for Ctrl+F
in javascript do ALWAYS prevent browser search (putting aside browser search can be triggered by other means).
Reading this stackoverflow post, and @Joachim Sauer's comment Is it possible to disable Ctrl + F of find in page?, I tried to determine whether this was true :
Note that [...] it will not prevent the user [...] from using an alternative shortcut if he's using a locale that uses some other key-combination for searching.
Based on this FireFox documentation, it seems that Find is always Ctrl+F, even if locale is different.
I also found this chromium issue 5100, where someone complains that Windows has shortcuts that depends on local (Search is Ctrl+L
in Portuguese for Localizar
), whereas for chromium used in Portuguese local under Windows it is not the case (always Ctrl+F
)
- Do you confirm that in main browsers, shortcut keys do not depend on locale ?
- Do you have any official documentation about it ?