Bug 617739 - Regression: blank start page should load in a remote tab [r=mfinkle]

This commit is contained in:
Matt Brubeck 2010-12-09 10:33:43 -05:00
parent 0246f3639f
commit 7c8ae7e9d4

View File

@ -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) {