зеркало из https://github.com/mozilla/gecko-dev.git
Bug 748802 - browser-thumbnails.js uses global private browsing state instead of per-window state. r=ehsan
This commit is contained in:
Родитель
e56f4af2a4
Коммит
1d50496f1a
|
@ -122,8 +122,8 @@ let gBrowserThumbnails = {
|
|||
if (aBrowser != gBrowser.selectedBrowser)
|
||||
return false;
|
||||
|
||||
// Don't capture in private browsing mode.
|
||||
if (gPrivateBrowsingUI.privateBrowsingEnabled)
|
||||
// Don't capture in per-window private browsing mode.
|
||||
if (gPrivateBrowsingUI.privateWindow)
|
||||
return false;
|
||||
|
||||
let doc = aBrowser.contentDocument;
|
||||
|
|
Загрузка…
Ссылка в новой задаче