summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_ignore_invalid_capability.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /browser/components/preferences/tests/browser_ignore_invalid_capability.js
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/components/preferences/tests/browser_ignore_invalid_capability.js')
-rw-r--r--browser/components/preferences/tests/browser_ignore_invalid_capability.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_ignore_invalid_capability.js b/browser/components/preferences/tests/browser_ignore_invalid_capability.js
new file mode 100644
index 0000000000..35b2679ffc
--- /dev/null
+++ b/browser/components/preferences/tests/browser_ignore_invalid_capability.js
@@ -0,0 +1,40 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+add_task(async function testInvalidCapabilityIgnored() {
+ info(
+ "Test to make sure that invalid combinations of type and capability are ignored \
+ so the cookieExceptions management popup does not crash"
+ );
+ PermissionTestUtils.add(
+ "https://mozilla.org",
+ "cookie",
+ Ci.nsICookiePermission.ACCESS_ALLOW
+ );
+
+ // This is an invalid combination of type & capability and should be ignored
+ PermissionTestUtils.add(
+ "https://foobar.org",
+ "cookie",
+ Ci.nsIHttpsOnlyModePermission.LOAD_INSECURE_ALLOW_SESSION
+ );
+
+ await openPreferencesViaOpenPreferencesAPI("panePrivacy", {
+ leaveOpen: true,
+ });
+ let doc = gBrowser.contentDocument;
+ let promiseSubDialogLoaded = promiseLoadSubDialog(
+ "chrome://browser/content/preferences/dialogs/permissions.xhtml"
+ );
+ doc.getElementById("cookieExceptions").doCommand();
+
+ let win = await promiseSubDialogLoaded;
+ doc = win.document;
+
+ is(
+ doc.getElementById("permissionsBox").itemCount,
+ 1,
+ "We only display the permission that is valid for the type cookie"
+ );
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});