summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js')
-rw-r--r--browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js b/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js
new file mode 100644
index 0000000000..9a4ae09696
--- /dev/null
+++ b/browser/components/preferences/tests/browser_search_subdialogs_within_preferences_5.js
@@ -0,0 +1,46 @@
+/*
+ * This file contains tests for the Preferences search bar.
+ */
+
+requestLongerTimeout(2);
+
+// Enabling Searching functionatily. Will display search bar form this testcase forward.
+add_task(async function () {
+ await SpecialPowers.pushPrefEnv({
+ set: [["browser.preferences.search", true]],
+ });
+});
+
+/**
+ * Test for searching for the "Fonts" subdialog.
+ */
+add_task(async function () {
+ await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
+ leaveOpen: true,
+ });
+ // Oh, Canada:
+ await evaluateSearchResults("Unified Canadian Syllabary", "fontsGroup");
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});
+
+/**
+ * Test for searching for the "Colors" subdialog.
+ */
+add_task(async function () {
+ await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
+ leaveOpen: true,
+ });
+ await evaluateSearchResults("Link Colors", "colorsGroup");
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});
+
+/**
+ * Test for searching for the "Exceptions - Saved Logins" subdialog.
+ */
+add_task(async function () {
+ await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
+ leaveOpen: true,
+ });
+ await evaluateSearchResults("sites will not be saved", "passwordsGroup");
+ BrowserTestUtils.removeTab(gBrowser.selectedTab);
+});