diff --git a/browser/components/preferences/in-content/main.js b/browser/components/preferences/in-content/main.js index 58cc2f92506b..2da191472217 100644 --- a/browser/components/preferences/in-content/main.js +++ b/browser/components/preferences/in-content/main.js @@ -72,6 +72,10 @@ var gMainPane = { .BrowserSearch.searchEnginesURL; addEnginesLink.setAttribute("href", searchEnginesURL); + let performanceSettingsLink = document.getElementById("performanceSettingsLearnMore"); + let performanceSettingsUrl = Services.urlFormatter.formatURLPref("app.support.baseURL") + "performance"; + performanceSettingsLink.setAttribute("href", performanceSettingsUrl); + window.addEventListener("click", this); window.addEventListener("command", this); window.addEventListener("dragstart", this); diff --git a/browser/components/preferences/in-content/main.xul b/browser/components/preferences/in-content/main.xul index f814342343ec..7e95812096ba 100644 --- a/browser/components/preferences/in-content/main.xul +++ b/browser/components/preferences/in-content/main.xul @@ -565,10 +565,13 @@