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
Родитель aac1550868
Коммит 13d1851683
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

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