ma1 pushed to branch tor-browser-115.11.0esr-13.5-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • browser/components/onionservices/content/authPrompt.js
    ... ... @@ -356,6 +356,13 @@ var OnionAuthPrompt = {
    356 356
           this._showWarning(undefined);
    
    357 357
         });
    
    358 358
     
    
    359
    +    // Force back focus on click: tor-browser#41856
    
    360
    +    document
    
    361
    +      .getElementById("tor-clientauth-notification")
    
    362
    +      .addEventListener("click", () => {
    
    363
    +        window.focus();
    
    364
    +      });
    
    365
    +
    
    359 366
         Services.obs.addObserver(this, this._topics.clientAuthMissing);
    
    360 367
         Services.obs.addObserver(this, this._topics.clientAuthIncorrect);
    
    361 368
       },