Bug 425320 - Alt-left/right in location bar then left/right resets cursor position. r=gavin, a1.9=beltzner

This commit is contained in:
edward.lee@engineering.uiuc.edu 2008-03-31 18:46:59 -07:00
parent a8d810defd
commit 81c92140fd

View File

@ -419,9 +419,14 @@
var cancel = false;
// Catch any keys that could potentially move the caret. Ctrl can be
// used in combination with these keys, so only make sure that Alt
// isn't used.
if (!this.disableKeyNavigation && !aEvent.altKey) {
// used in combination with these keys on Windows and Linux; and Alt
// can be used on OS X, so make sure the unused one isn't used.
if (!this.disableKeyNavigation &&
#ifdef XP_MACOSX
!aEvent.ctrlKey) {
#else
!aEvent.altKey) {
#endif
switch (aEvent.keyCode) {
case KeyEvent.DOM_VK_LEFT:
case KeyEvent.DOM_VK_RIGHT: