diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /browser/components/preferences/tests/browser_cookies_exceptions.js | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/preferences/tests/browser_cookies_exceptions.js')
-rw-r--r-- | browser/components/preferences/tests/browser_cookies_exceptions.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/browser/components/preferences/tests/browser_cookies_exceptions.js b/browser/components/preferences/tests/browser_cookies_exceptions.js index d2d538a48a..03e29d0b4c 100644 --- a/browser/components/preferences/tests/browser_cookies_exceptions.js +++ b/browser/components/preferences/tests/browser_cookies_exceptions.js @@ -19,7 +19,7 @@ add_task(async function testAllow() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -52,7 +52,7 @@ add_task(async function testBlock() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -85,7 +85,7 @@ add_task(async function testAllowAgain() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -152,7 +152,7 @@ add_task(async function testAdd() { PermissionTestUtils.remove(uri, "popup"); }, - params => { + () => { return [ { type: "popup", @@ -178,7 +178,7 @@ add_task(async function testAllowHTTPSWithPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -204,7 +204,7 @@ add_task(async function testBlockHTTPSWithPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -230,7 +230,7 @@ add_task(async function testAllowAgainHTTPSWithPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -288,7 +288,7 @@ add_task(async function testAllowPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -321,7 +321,7 @@ add_task(async function testBlockPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -354,7 +354,7 @@ add_task(async function testAllowAgainPort() { apply(); await observeAllPromise; }, - params => { + () => { return [ { type: "cookie", @@ -450,7 +450,7 @@ add_task(async function testSort() { PermissionTestUtils.remove(uri, "cookie"); } }, - params => { + () => { return [ { type: "cookie", @@ -477,7 +477,7 @@ add_task(async function testSort() { add_task(async function testPrivateBrowsingSessionPermissionsAreHidden() { await runTest( - async (params, observeAllPromise, apply) => { + async params => { assertListContents(params, []); let uri = Services.io.newURI("http://test.com"); @@ -498,7 +498,7 @@ add_task(async function testPrivateBrowsingSessionPermissionsAreHidden() { PermissionTestUtils.remove(uri, "cookie"); }, - params => { + () => { return []; } ); |