Use a cached ref to the url bar instead of retrieving it for each page load and accel+L (75331). r=kerz sr=alecf

git-svn-id: svn://10.0.0.236/trunk@210727 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
blakeross%telocity.com
2006-09-14 05:57:03 +00:00
parent 96737d7dcf
commit 21d616bbd2

View File

@@ -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();
}