Bug 1762462 - Make tests in dom/broadcastchannel/tests/ reflect Always Partitioning Storage; r=smaug

Depends on D148047

Differential Revision: https://phabricator.services.mozilla.com/D148048
This commit is contained in:
Thomas Wisniewski 2022-07-13 22:44:59 +00:00
Родитель 4a231d9f0d
Коммит f3007fdf53
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -104,7 +104,11 @@
SpecialPowers.wrap(document).notifyUserGestureActivation();
SpecialPowers.addPermission("storageAccessAPI", true, window.location.href).then(() => {
SpecialPowers.wrap(document).requestStorageAccess().then(() => {
executeTest();
SpecialPowers.pushPrefEnv({
set: [["privacy.partition.always_partition_third_party_non_cookie_storage", false]]
}).then(() => {
executeTest();
});
});
});
} else {