mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-04 21:52:44 +00:00
Fix for bug 287461. Caret Browsing is hardbound to the F7 key and is unable to be overridden with javascript like F3, F5, etc.
r+sr=neil patch by Brian King <brian@mozdev.org>
This commit is contained in:
parent
c82717ed9a
commit
aa157eaf6d
@ -813,9 +813,9 @@
|
||||
</implementation>
|
||||
|
||||
<handlers>
|
||||
<handler event="keypress" keycode="VK_F7">
|
||||
<handler event="keypress" keycode="VK_F7" group="system">
|
||||
<![CDATA[
|
||||
if (!event.isTrusted)
|
||||
if (event.getPreventDefault() || !event.isTrusted)
|
||||
return;
|
||||
|
||||
// Toggle browse with caret mode
|
||||
|
@ -395,9 +395,9 @@
|
||||
</implementation>
|
||||
|
||||
<handlers>
|
||||
<handler event="keypress" keycode="VK_F7">
|
||||
<handler event="keypress" keycode="VK_F7" group="system">
|
||||
<![CDATA[
|
||||
if (!event.isTrusted)
|
||||
if (event.getPreventDefault() || !event.isTrusted)
|
||||
return;
|
||||
|
||||
// Toggle browse with caret mode
|
||||
|
Loading…
x
Reference in New Issue
Block a user