From 7c8ae7e9d4dfac90c4120ecc379d665011900151 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Thu, 9 Dec 2010 10:33:43 -0500 Subject: [PATCH] Bug 617739 - Regression: blank start page should load in a remote tab [r=mfinkle] --- mobile/chrome/content/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/chrome/content/Util.js b/mobile/chrome/content/Util.js index 0c543238b08..2d98730e052 100644 --- a/mobile/chrome/content/Util.js +++ b/mobile/chrome/content/Util.js @@ -118,7 +118,7 @@ let Util = { }, isLocalScheme: function isLocalScheme(aURL) { - return (aURL.indexOf("about:") == 0 && aURL != "about:blank") || aURL.indexOf("chrome:") == 0; + return (aURL.indexOf("about:") == 0 && aURL != "about:blank" && aURL != "about:empty") || aURL.indexOf("chrome:") == 0; }, isShareableScheme: function isShareableScheme(aProtocol) {