commit 67a43911bcf923cc909c683b685a3b36615d56a6 parent 5c55cb99fed32e5cd8ea77f5a6c11e369142805b Author: Micah Killoran <mtigley@mozilla.com> Date: Wed, 8 Oct 2025 16:30:30 +0000 Bug 1993048 - [contextual-password-manager] Enable CPM for Fx145. r=dimi,nsharpley Differential Revision: https://phabricator.services.mozilla.com/D267844 Diffstat:
3 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js @@ -889,7 +889,7 @@ pref("browser.search.suggest.ohttp.enabled", true); pref("browser.spin_cursor_while_busy", false); // Enable display of contextual-password-manager option in browser sidebar -pref("browser.contextual-password-manager.enabled", false); +pref("browser.contextual-password-manager.enabled", true); // Whether the user has opted-in to recommended settings for data features. pref("browser.dataFeatureRecommendations.enabled", false); diff --git a/browser/components/sidebar/tests/browser/browser_customize_sidebar.js b/browser/components/sidebar/tests/browser/browser_customize_sidebar.js @@ -58,8 +58,8 @@ add_task(async function test_customize_sidebar_actions() { ); is( customizeComponent.toolInputs.length, - 4, - "Four default tools are shown in the customize menu" + 5, + "Five default tools are shown in the customize menu" ); for (const toolInput of customizeComponent.toolInputs) { diff --git a/toolkit/components/satchel/megalist/content/tests/browser/browser_passwords_delete_login.js b/toolkit/components/satchel/megalist/content/tests/browser/browser_passwords_delete_login.js @@ -68,4 +68,7 @@ add_task(async function test_delete_login_success() { const numPasswords = megalist.querySelectorAll("password-card").length; is(numPasswords, 2, "One login was successfully deleted."); + + info("Closing the sidebar"); + SidebarController.hide(); });