Bug 1857066: Enable CacheStorage::Constructor for PBM.r=dom-storage-reviewers,janv

Depends on D180904

Differential Revision: https://phabricator.services.mozilla.com/D190121
This commit is contained in:
Harveer Singh 2023-10-27 14:10:09 +00:00
Родитель 85f083d221
Коммит 93b6557806
1 изменённых файлов: 1 добавлений и 1 удалений

2
dom/cache/CacheStorage.cpp поставляемый
Просмотреть файл

@ -482,7 +482,7 @@ already_AddRefed<CacheStorage> CacheStorage::Constructor(
}
}
if (privateBrowsing) {
if (privateBrowsing && !StaticPrefs::dom_cache_privateBrowsing_enabled()) {
RefPtr<CacheStorage> ref = new CacheStorage(NS_ERROR_DOM_SECURITY_ERR);
return ref.forget();
}