Skip to content

Commit 9f5d886

Browse files
author
Alexandre Lissy
committed
Merge branch 'bookmarks/central' into enterprise-main
2 parents cab1675 + 04cf275 commit 9f5d886

File tree

794 files changed

+12314
-6336
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

794 files changed

+12314
-6336
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

accessible/tests/browser/mac/browser_app.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ function getMacAccessible(accOrElmOrID) {
2828
});
2929
}
3030

31+
add_setup(async function () {
32+
await SpecialPowers.pushPrefEnv({
33+
set: [["browser.urlbar.trustPanel.featureGate", false]],
34+
});
35+
});
36+
3137
/**
3238
* Test a11yUtils announcements are exposed to VO
3339
*/

browser/app/profile/firefox.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,11 @@ pref("browser.urlbar.deduplication.thresholdDays", 0);
424424

425425
pref("browser.urlbar.scotchBonnet.enableOverride", true);
426426

427+
#ifdef NIGHTLY_BUILD
428+
pref("browser.urlbar.trustPanel.featureGate", true);
429+
#else
427430
pref("browser.urlbar.trustPanel.featureGate", false);
431+
#endif
428432

429433
// Once Perplexity has entered search mode at least once,
430434
// we no longer show the Perplexity onboarding callout.
@@ -2033,14 +2037,14 @@ pref("browser.newtabpage.activity-stream.discoverystream.region-basic-config", "
20332037
pref("browser.newtabpage.activity-stream.discoverystream.pocket-feed-parameters", "");
20342038
pref("browser.newtabpage.activity-stream.discoverystream.merino-feed-experiment", false);
20352039

2036-
pref("browser.newtabpage.activity-stream.discoverystream.personalization.enabled", true);
2040+
pref("browser.newtabpage.activity-stream.discoverystream.personalization.enabled", false);
20372041
pref("browser.newtabpage.activity-stream.discoverystream.personalization.override", false);
20382042
// Configurable keys used by personalization.
20392043
pref("browser.newtabpage.activity-stream.discoverystream.personalization.modelKeys", "nb_model_arts_and_entertainment, nb_model_autos_and_vehicles, nb_model_beauty_and_fitness, nb_model_blogging_resources_and_services, nb_model_books_and_literature, nb_model_business_and_industrial, nb_model_computers_and_electronics, nb_model_finance, nb_model_food_and_drink, nb_model_games, nb_model_health, nb_model_hobbies_and_leisure, nb_model_home_and_garden, nb_model_internet_and_telecom, nb_model_jobs_and_education, nb_model_law_and_government, nb_model_online_communities, nb_model_people_and_society, nb_model_pets_and_animals, nb_model_real_estate, nb_model_reference, nb_model_science, nb_model_shopping, nb_model_sports, nb_model_travel");
20402044
// System pref to allow Pocket stories personalization to be turned on/off.
20412045
pref("browser.newtabpage.activity-stream.discoverystream.recs.personalized", false);
20422046
// System pref to allow Pocket sponsored content personalization to be turned on/off.
2043-
pref("browser.newtabpage.activity-stream.discoverystream.spocs.personalized", true);
2047+
pref("browser.newtabpage.activity-stream.discoverystream.spocs.personalized", false);
20442048

20452049
// List of locales that get thumbs up/down on recommended stories by default.
20462050
pref("browser.newtabpage.activity-stream.discoverystream.thumbsUpDown.locale-thumbs-config", "en-US, en-GB, en-CA");

browser/base/content/test/about/browser_aboutNetError_blank_page.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ async function test_blankPage(
2121
header = "show" // show (zero content-length), hide (no content-length), or lie (non-empty content-length)
2222
) {
2323
await SpecialPowers.pushPrefEnv({
24-
set: [["browser.http.blank_page_with_error_response.enabled", false]],
24+
set: [
25+
["browser.http.blank_page_with_error_response.enabled", false],
26+
["browser.urlbar.trustPanel.featureGate", false],
27+
],
2528
});
2629

2730
let browser;

browser/base/content/test/general/browser_addCertException.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
// using the button contained therein to load the certificate exception
1010
// dialog, using that to add an exception, and finally successfully visiting
1111
// the site, including showing the right identity box and control center icons.
12+
add_setup(async function () {
13+
await SpecialPowers.pushPrefEnv({
14+
set: [["browser.urlbar.trustPanel.featureGate", false]],
15+
});
16+
});
17+
1218
add_task(async function () {
1319
for (let feltPrivacyEnabled of [true, false]) {
1420
await SpecialPowers.pushPrefEnv({

browser/base/content/test/keyboard/browser_toolbarKeyNav.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ add_setup(async function () {
123123
["test.wait300msAfterTabSwitch", true],
124124
// TODO: Reenable in https://bugzilla.mozilla.org/show_bug.cgi?id=1923388
125125
["browser.urlbar.scotchBonnet.enableOverride", false],
126+
["browser.urlbar.trustPanel.featureGate", false],
126127
["browser.toolbars.keyboard_navigation", true],
127128
["accessibility.tabfocus", 7],
128129
// Taskbar Tabs' page action is controlled by a pref that differs across

browser/base/content/test/popupNotifications/browser_popupNotification_hide_after_identity_panel.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
* License, v. 2.0. If a copy of the MPL was not distributed with this
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

5+
add_setup(async function () {
6+
await SpecialPowers.pushPrefEnv({
7+
set: [["browser.urlbar.trustPanel.featureGate", false]],
8+
});
9+
});
10+
511
add_task(async function test_displayURI_geo() {
612
await BrowserTestUtils.withNewTab(
713
"https://test1.example.com/",

browser/base/content/test/popupNotifications/browser_popupNotification_hide_after_protections_panel.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
* License, v. 2.0. If a copy of the MPL was not distributed with this
33
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
44

5+
add_setup(async function () {
6+
await SpecialPowers.pushPrefEnv({
7+
set: [["browser.urlbar.trustPanel.featureGate", false]],
8+
});
9+
});
10+
511
add_task(async function test_hide_popup_with_protections_panel_showing() {
612
await BrowserTestUtils.withNewTab(
713
"https://test1.example.com/",

browser/base/content/test/protectionsUI/browser.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ support-files = [
1313
"trackingPage.html",
1414
]
1515

16+
prefs = [
17+
"browser.urlbar.trustPanel.featureGate=false"
18+
]
19+
1620
["browser_protectionsUI.js"]
1721
https_first_disabled = true
1822

browser/base/content/test/siteIdentity/browser.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ support-files = [
55
"!/image/test/mochitest/blue.png",
66
]
77
prefs = [
8+
"browser.urlbar.trustPanel.featureGate=false",
89
"security.certerrors.felt-privacy-v1=true"
910
]
1011

0 commit comments

Comments
 (0)