Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && asan OR os == 'linux' && os_version == '18.04' && tsan OR win11_2009 && asan
- Manifest: browser/components/preferences/tests/browser.toml
/*
* This file contains tests for the Preferences search bar.
*/
requestLongerTimeout(2);
/**
* Test for searching for the "Device Manager" subdialog.
*/
add_task(async function () {
await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
await evaluateSearchResults("Security Modules and Devices", "certSelection");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});
/**
* Test for searching for the "Connection Settings" subdialog.
*/
add_task(async function () {
await openPreferencesViaOpenPreferencesAPI("paneGeneral", {
leaveOpen: true,
});
await evaluateSearchResults("Use system proxy settings", "connectionGroup");
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});