diff --git a/browser/base/content/browser.js b/browser/base/content/browser.js index d0c9e6118de3..48bb491b7d4b 100644 --- a/browser/base/content/browser.js +++ b/browser/base/content/browser.js @@ -3641,8 +3641,10 @@ function OpenBrowserWindow(options) var extraFeatures = ""; if (options && options.private) { extraFeatures = ",private"; - // Force the new window to load about:privatebrowsing instead of the default home page - defaultArgs = "about:privatebrowsing"; + if (!PrivateBrowsingUtils.permanentPrivateBrowsing) { + // Force the new window to load about:privatebrowsing instead of the default home page + defaultArgs = "about:privatebrowsing"; + } } else { extraFeatures = ",non-private"; }