[tor-commits] [tor-browser/tor-browser-68.1.0esr-9.0-3] Bug 31748: Fixed 'Learn More' links in Security Level preferences and

gk at torproject.org gk at torproject.org
Thu Oct 17 07:44:03 UTC 2019


commit 1a8a46866f0dfd69c7a477ce8e3a46c9640e3a53
Author: Richard Pospesel <richard at torproject.org>
Date:   Wed Oct 16 15:52:51 2019 -0700

    Bug 31748: Fixed 'Learn More' links in Security Level preferences and
    panel
    
    With ESR68 we needed to add a new is="text-link" attribute to label
    elements used as hyperlinks
---
 browser/components/securitylevel/content/securityLevelPanel.inc.xul    | 3 ++-
 .../components/securitylevel/content/securityLevelPreferences.inc.xul  | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/browser/components/securitylevel/content/securityLevelPanel.inc.xul b/browser/components/securitylevel/content/securityLevelPanel.inc.xul
index 6a00e811a6ac..c28456d359f3 100644
--- a/browser/components/securitylevel/content/securityLevelPanel.inc.xul
+++ b/browser/components/securitylevel/content/securityLevelPanel.inc.xul
@@ -23,7 +23,8 @@
         <label
           id="securityLevel-learnMore"
           class="learnMore text-link"
-          onclick="SecurityLevelPanel.hide();"/>
+          onclick="SecurityLevelPanel.hide();"
+          is="text-link"/>
         <button
           id="securityLevel-restoreDefaults"
           oncommand="SecurityLevelPanel.restoreDefaults();"/>
diff --git a/browser/components/securitylevel/content/securityLevelPreferences.inc.xul b/browser/components/securitylevel/content/securityLevelPreferences.inc.xul
index 0cf05a5f3c9b..0e68800e2766 100644
--- a/browser/components/securitylevel/content/securityLevelPreferences.inc.xul
+++ b/browser/components/securitylevel/content/securityLevelPreferences.inc.xul
@@ -3,7 +3,7 @@
   <vbox data-subcategory="securitylevel" flex="1">
     <description flex="1">
       <html:span id="securityLevel-overview" class="tail-with-learn-more"/>
-      <label id="securityLevel-learnMore" class="learnMore text-link"/>
+      <label id="securityLevel-learnMore" class="learnMore text-link" is="text-link"/>
     </description>
     <radiogroup id="securityLevel-radiogroup"
                 oncommand="SecurityLevelPreferences.selectSecurityLevel();">



More information about the tor-commits mailing list