зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1522776 - Unsupported permission values should be ignored by Sanitizer.jsm, r=johannh
This commit is contained in:
Родитель
9a5ceab720
Коммит
8b89f2aaf9
|
@ -250,6 +250,26 @@ tests.forEach(methods => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Session mode, but with unsupported custom permission, data in
|
||||||
|
// www.example.com, cookie permission set for www.example.com
|
||||||
|
tests.forEach(methods => {
|
||||||
|
attributes.forEach(originAttributes => {
|
||||||
|
add_task(async function deleteStorageOnlyCustomPermission() {
|
||||||
|
info(methods.name + ": All is session only, but with unsupported custom custom permission, data in www.example.com, cookie permission set for www.example.com - OA: " + originAttributes.name);
|
||||||
|
await deleteOnShutdown(
|
||||||
|
{ lifetimePolicy: Ci.nsICookieService.ACCEPT_SESSION,
|
||||||
|
createData: methods.createData,
|
||||||
|
checkData: methods.checkData,
|
||||||
|
originAttributes: originAttributes.oa,
|
||||||
|
cookiePermission: 123, // invalid cookie permission
|
||||||
|
expectedForOrg: false,
|
||||||
|
expectedForCom: false,
|
||||||
|
fullHost: true,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
add_task(async function deleteStorageInAboutURL() {
|
add_task(async function deleteStorageInAboutURL() {
|
||||||
info("Test about:newtab");
|
info("Test about:newtab");
|
||||||
|
|
||||||
|
|
|
@ -688,7 +688,6 @@ async function sanitizeOnShutdown(progress) {
|
||||||
await maybeSanitizeSessionPrincipals(principals);
|
await maybeSanitizeSessionPrincipals(principals);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Let's see if we have to forget some particular site.
|
// Let's see if we have to forget some particular site.
|
||||||
for (let permission of Services.perms.enumerator) {
|
for (let permission of Services.perms.enumerator) {
|
||||||
if (permission.type != "cookie" ||
|
if (permission.type != "cookie" ||
|
||||||
|
@ -808,6 +807,11 @@ function cookiesAllowedForDomainOrSubDomain(principal) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This is an old profile with unsupported permission values
|
||||||
|
if (p != Ci.nsICookiePermission.ACCESS_DEFAULT) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
for (let perm of Services.perms.enumerator) {
|
for (let perm of Services.perms.enumerator) {
|
||||||
if (perm.type != "cookie") {
|
if (perm.type != "cookie") {
|
||||||
continue;
|
continue;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче