From d7fd505417b97a2b2bc25c7a5fa276b5f5a5b99f Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Mon, 24 Jan 2011 06:42:54 -0500 Subject: [PATCH] Fix urlbar focus bug when urlbar is in the menu bar. --HG-- branch : key-processing --- common/content/events.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index 95bd8519..476f8b55 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -950,7 +950,8 @@ var Events = Module("events", { if (event.target instanceof Ci.nsIDOMXULTextBoxElement) for (let e = elem; e instanceof Element; e = e.parentNode) - if (util.computedStyle(e).visibility !== "visible") { + if (util.computedStyle(e).visibility !== "visible" || + e.boxObject && e.boxObject.height === 0) { elem.blur(); break; }