Bug 1770944 - fixed test_cookiejars.js, r=smaug,necko-reviewers,jesup

Depends on D192502

Differential Revision: https://phabricator.services.mozilla.com/D192626
This commit is contained in:
Artur Iunusov 2024-02-22 10:13:18 +00:00
Родитель 4352913955
Коммит 084ba6524e
2 изменённых файлов: 3 добавлений и 13 удалений

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

@ -274,12 +274,10 @@ ChannelEventSink.prototype = {
/**
* A helper class to construct origin attributes.
*/
function OriginAttributes(inIsolatedMozBrowser, privateId) {
this.inIsolatedMozBrowser = inIsolatedMozBrowser;
function OriginAttributes(privateId) {
this.privateBrowsingId = privateId;
}
OriginAttributes.prototype = {
inIsolatedMozBrowser: false,
privateBrowsingId: 0,
};

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

@ -36,19 +36,11 @@ function inChildProcess() {
var tests = [
{
cookieName: "LCC_App0_BrowF_PrivF",
originAttributes: new OriginAttributes(0, false, 0),
},
{
cookieName: "LCC_App0_BrowT_PrivF",
originAttributes: new OriginAttributes(0, true, 0),
originAttributes: new OriginAttributes(0),
},
{
cookieName: "LCC_App1_BrowF_PrivF",
originAttributes: new OriginAttributes(1, false, 0),
},
{
cookieName: "LCC_App1_BrowT_PrivF",
originAttributes: new OriginAttributes(1, true, 0),
originAttributes: new OriginAttributes(1),
},
];