From 98b66321026bae21e9c891f207d3846061fd3194 Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Thu, 12 Apr 2001 04:34:43 +0000 Subject: [PATCH] Use a cached ref to the url bar instead of retrieving it for each page load and accel+L (75331). r=kerz sr=alecf --- xpfe/browser/resources/content/navigator.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/xpfe/browser/resources/content/navigator.js b/xpfe/browser/resources/content/navigator.js index 7b8cfb148db1..5cbe00cb7fba 100644 --- a/xpfe/browser/resources/content/navigator.js +++ b/xpfe/browser/resources/content/navigator.js @@ -320,7 +320,7 @@ nsXULBrowserWindow.prototype = // We should probably not do this if the value has changed since the user // searched - document.getElementById("urlbar").value = location; + gURLBar.value = location; UpdateBackForwardButtons(); }, @@ -1399,11 +1399,10 @@ function ShowAndSelectContentsOfURLBar() if (navBar.getAttribute("hidden") == "true") goToggleToolbar('nav-bar','cmd_viewnavbar'); - var urlBar = document.getElementById("urlbar"); - if (urlBar.value) - urlBar.select(); + if (gURLBar.value) + gURLBar.select(); else - urlBar.focus(); + gURLBar.focus(); }