henry pushed to branch mullvad-browser-150.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser

Commits:

1 changed file:

Changes:

  • toolkit/content/net-error-card.mjs
    ... ... @@ -998,6 +998,8 @@ export class NetErrorCard extends MozLitElement {
    998 998
         }
    
    999 999
     
    
    1000 1000
         const { bodyTitleL10nId, image } = this.errorConfig;
    
    1001
    +    // Drop the Firefox mascot images. tor-browser#44832.
    
    1002
    +    // eslint-disable-next-line no-unused-vars
    
    1001 1003
         const { src, alt } = image ?? NET_ERROR_ILLUSTRATIONS.securityError;
    
    1002 1004
         const title = bodyTitleL10nId ?? "fp-certerror-body-title";
    
    1003 1005
     
    
    ... ... @@ -1006,9 +1008,6 @@ export class NetErrorCard extends MozLitElement {
    1006 1008
             href="chrome://global/skin/aboutNetError.css"
    
    1007 1009
           />
    
    1008 1010
           <article class="felt-privacy-container">
    
    1009
    -        <div class="img-container">
    
    1010
    -          <img src=${src} data-l10n-id=${alt} data-l10n-attrs="alt" />
    
    1011
    -        </div>
    
    1012 1011
             <div class="container">
    
    1013 1012
               ${this.showCustomNetErrorCard
    
    1014 1013
                 ? html`${this.customNetErrorContainerTemplate()}`