tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 568e69b41af5f6ae53f4d8424762cc62aedd5725
parent 4739a0951cc79979b2955e011f06481f4d6ca6fc
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Fri, 21 Nov 2025 21:57:54 +0000

Bug 1996823 - add fido.ca to our rogers.com webcompat intervention; r=ksenia,webcompat-reviewers

Differential Revision: https://phabricator.services.mozilla.com/D273594

Diffstat:
Mbrowser/extensions/webcompat/data/interventions.json | 12+++++++++---
Mbrowser/extensions/webcompat/manifest.json | 2+-
2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -5920,11 +5920,14 @@ ] }, "1996823": { - "label": "rogers.com", + "label": "rogers.com and fido.ca", "bugs": { "1996823": { "issue": "page-fails-to-load", - "matches": ["*://www.rogers.com/bbapp/bbapi.js*"] + "matches": [ + "*://www.rogers.com/bbapp/bbapi.js*", + "*://www.fido.ca/bbapp/bbapi.js*" + ] } }, "interventions": [ @@ -5934,7 +5937,10 @@ { "find": "window\\.location\\.href = link;", "replace": "let url = new URL(window.location.href); url.hash = link; window.location.href = url.href;", - "urls": ["*://www.rogers.com/bbapp/bbapi.js*"] + "urls": [ + "*://www.rogers.com/bbapp/bbapi.js*", + "*://www.fido.ca/bbapp/bbapi.js*" + ] } ] } diff --git a/browser/extensions/webcompat/manifest.json b/browser/extensions/webcompat/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Web Compatibility Interventions", "description": "Urgent post-release fixes for web compatibility.", - "version": "147.6.0", + "version": "147.7.0", "browser_specific_settings": { "gecko": { "id": "webcompat@mozilla.org",