diff --git a/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js b/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js index 9f018420130..353b41ee2fc 100644 --- a/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js +++ b/mozilla/xpfe/browser/resources/content/nsBrowserStatusHandler.js @@ -295,8 +295,11 @@ nsBrowserStatusHandler.prototype = var domWindow = aWebProgress.DOMWindow; if (domWindow == domWindow.top) { - if (!this.userTyped.value) + if (!this.userTyped.value) { this.urlBar.value = location; + // the above causes userTyped.value to become true, reset it + this.userTyped.value = false; + } SetPageProxyState("valid", aLocation); }