patch by bugs.mano@mail-central.com r=jpedemonte sr=neil git-svn-id: svn://10.0.0.236/trunk@168043 18797224-902f-48f8-a5cc-f745e15eee43
45 lines
2.0 KiB
XML
45 lines
2.0 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!DOCTYPE overlay SYSTEM "chrome://navigator-platform/locale/platformNavigationBindings.dtd">
|
|
|
|
<overlay id="platformNavigationBindings"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<keyset id="navigationKeys">
|
|
<!-- back and forward accelerators on Windows, strangely enough, are
|
|
Alt+Left arrow and Alt+Right arrow. -->
|
|
<key id="goBackKb" keycode="&goBackCmd.keyCode;" command="Browser:Back" modifiers="alt"/>
|
|
<key id="goForwardKb" keycode="&goForwardCmd.keyCode;" command="Browser:Forward" modifiers="alt"/>
|
|
<key id="key_stop" keycode="VK_ESCAPE" oncommand="BrowserStop();"/>
|
|
|
|
<!-- Supporting IE forward and back accelerators out of courtesy
|
|
to transitioning IE users -->
|
|
<!-- Backspace is also used by type ahead find -->
|
|
<key keycode="VK_BACK" command="cmd_handleBackspace"/>
|
|
<key keycode="VK_BACK" command="Browser:Forward" modifiers="shift"/>
|
|
|
|
<!-- Supporting IE 'refresh' shortcut key -->
|
|
<key keycode="VK_F5" oncommand="BrowserReload();"/>
|
|
<key keycode="VK_F5" modifiers="control" oncommand="BrowserReloadSkipCache();"/>
|
|
|
|
<key id="goHome" keycode="VK_HOME" command="Browser:Home" modifiers="alt"/>
|
|
|
|
<key id="key_fullScreen" keycode="VK_F11" command="View:FullScreen"/>
|
|
<key id="key_newTabWithTarget" keycode="VK_INSERT" command="cmd_newTabWithTarget"/>
|
|
<key id="key_newTabWithTarget" keycode="VK_INSERT" modifiers="shift" command="cmd_newTabWithTarget"/>
|
|
|
|
<!-- Support Accel+Shift for Add Bookmark -->
|
|
<key id="addBookmarkKb" key="&addCurPageCmd.commandkey;" command="Browser:AddBookmark" modifiers="accel,shift"/>
|
|
</keyset>
|
|
|
|
<keyset id="viewSourceKeys">
|
|
<!-- Supporting IE 'refresh' shortcut key in view source -->
|
|
<key keycode="VK_F5" oncommand="BrowserReload();"/>
|
|
<key keycode="VK_F5" modifiers="control" oncommand="BrowserReloadSkipCache();"/>
|
|
</keyset>
|
|
|
|
<menuitem id="menuitem_fullScreen" hidden="false"/>
|
|
</overlay>
|
|
|
|
|