Bug 1190093 - Stop throttling frame requests for loading pages by checking Hidden(), not isShowing. r=tnikkel

This commit is contained in:
Ross Lovas 2016-01-08 15:20:34 -06:00
Родитель 4a1e93fddb
Коммит c58011d852
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -3755,8 +3755,8 @@ nsIDocument::ShouldThrottleFrameRequests()
return false;
}
if (!mIsShowing) {
// We're not showing (probably in a background tab or the bf cache).
if (Hidden()) {
// We're not visible (probably in a background tab or the bf cache).
return true;
}