From 6956668100f21060c1ae846b410fad8781259691 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 8 Mar 2011 12:44:15 -0800 Subject: [PATCH] Bug 638369 - Update title when creating a new tab [r=wesj a=mfinkle] --- mobile/chrome/content/browser.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mobile/chrome/content/browser.js b/mobile/chrome/content/browser.js index aefcd3665880..39ede82263f9 100644 --- a/mobile/chrome/content/browser.js +++ b/mobile/chrome/content/browser.js @@ -662,6 +662,9 @@ var Browser = { newTab.chromeTab.dispatchEvent(event); newTab.browser.messageManager.sendAsyncMessage("Browser:TabOpen"); + // Display the URL in the titlebar while the page starts loading. + BrowserUI._titleChanged(newTab.browser); + return newTab; },