From 2c677ff8d7eb81cd3d730ee5079d63c852da4547 Mon Sep 17 00:00:00 2001 From: "aaronleventhal%moonset.net" Date: Wed, 1 Jun 2005 02:14:46 +0000 Subject: [PATCH] Bug 263853. Neither Alt+down nor F4 key are listing the URLs from the address bar. Patch by gavin.sharp@gmail.com, r=mconnor, a=shaver git-svn-id: svn://10.0.0.236/trunk@173872 18797224-902f-48f8-a5cc-f745e15eee43 --- .../toolkit/content/widgets/autocomplete.xml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/mozilla/toolkit/content/widgets/autocomplete.xml b/mozilla/toolkit/content/widgets/autocomplete.xml index 85d9f7eaebb..9401c1899f7 100644 --- a/mozilla/toolkit/content/widgets/autocomplete.xml +++ b/mozilla/toolkit/content/widgets/autocomplete.xml @@ -324,6 +324,15 @@ ]]> + + + + @@ -395,6 +404,16 @@ if (aEvent.shiftKey) cancel = this.mController.handleDelete(); break; + case KeyEvent.DOM_VK_DOWN: + case KeyEvent.DOM_VK_UP: + if (aEvent.altKey) + this.toggleHistoryPopup(); + break; +#ifndef XP_MACOSX + case KeyEvent.DOM_VK_F4: + this.toggleHistoryPopup(); + break; +#endif } if (cancel) {