mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-14 02:31:59 +00:00
r=mkaply, a=blizzard OS/2 missing platform specific navigation bindings stuff
This commit is contained in:
parent
684ef11aeb
commit
9609963103
2
xpfe/browser/resources/content/os2/.cvsignore
Normal file
2
xpfe/browser/resources/content/os2/.cvsignore
Normal file
@ -0,0 +1,2 @@
|
||||
Makefile
|
||||
|
37
xpfe/browser/resources/content/os2/Makefile.in
Normal file
37
xpfe/browser/resources/content/os2/Makefile.in
Normal file
@ -0,0 +1,37 @@
|
||||
#
|
||||
# The contents of this file are subject to the Netscape Public
|
||||
# License Version 1.1 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.mozilla.org/NPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS
|
||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
# implied. See the License for the specific language governing
|
||||
# rights and limitations under the License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
#
|
||||
# The Initial Developer of the Original Code is Netscape
|
||||
# Communications Corporation. Portions created by Netscape are
|
||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
||||
# Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
#
|
||||
|
||||
DEPTH = ../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
CHROME_DIR=packages/core
|
||||
CHROME_CONTENT_DIR=navigator/content
|
||||
|
||||
CHROME_CONTENT = \
|
||||
platformNavigationBindings.xul \
|
||||
$(NULL)
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
2
xpfe/browser/resources/content/os2/jar.mn
Normal file
2
xpfe/browser/resources/content/os2/jar.mn
Normal file
@ -0,0 +1,2 @@
|
||||
comm.jar:
|
||||
content/navigator/platformNavigationBindings.xul
|
@ -0,0 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
|
||||
<overlay id="platformNavigationBindings"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<keyset id="keyset">
|
||||
<!-- back and forward accelerators on Windows, strangely enough, are
|
||||
Alt+Left arrow and Alt+Right arrow. -->
|
||||
<key id="goBackKb" keycode="VK_LEFT" observes="Browser:Back" modifiers="alt"/>
|
||||
<key id="goForwardKb" keycode="VK_RIGHT" observes="Browser:Forward" modifiers="alt"/>
|
||||
|
||||
<!-- Supporting IE forward and back accelerators out of courtesy
|
||||
to transitioning IE users -->
|
||||
<key id="goBackKbIE" keycode="VK_BACK" observes="Browser:Back"/>
|
||||
<key id="goForwardKbIE" keycode="VK_BACK" observes="Browser:Forward" modifiers="shift"/>
|
||||
|
||||
<!-- Supporting IE 'refresh' shortcut key -->
|
||||
<key id="reloadIE" keycode="VK_F5" observes="canReload"/>
|
||||
|
||||
</keyset>
|
||||
|
||||
</overlay>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user