tor-browser

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

commit bfea5908ff670b0931176528233c546d2fbf5748
parent 01d500f3dd6e85ef747fe4a1806ced0126fcb8fd
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Thu, 16 Oct 2025 16:12:14 +0000

Bug 1948723 - remove our UA override for babel.com; r=webcompat-reviewers,ksenia

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

Diffstat:
Mbrowser/extensions/webcompat/data/interventions.json | 15---------------
Mtesting/webcompat/interventions/tests/test_1948723_babel_com.py | 12++----------
2 files changed, 2 insertions(+), 25 deletions(-)

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -4384,21 +4384,6 @@ } ] }, - "1948723": { - "label": "babel.com", - "bugs": { - "1948723": { - "issue": "firefox-blocked-completely", - "matches": ["*://chat.babel.com/*"] - } - }, - "interventions": [ - { - "platforms": ["all"], - "ua_string": ["Chrome"] - } - ] - }, "1949466": { "label": "lapalabradeldia.com", "bugs": { diff --git a/testing/webcompat/interventions/tests/test_1948723_babel_com.py b/testing/webcompat/interventions/tests/test_1948723_babel_com.py @@ -7,16 +7,8 @@ UNSUPPORTED_CSS = ".download.chrome" @pytest.mark.asyncio -@pytest.mark.with_interventions -async def test_enabled(client): +@pytest.mark.without_interventions +async def test_regression(client): await client.navigate(URL) assert client.await_css(SUPPORTED_CSS) assert not client.find_css(UNSUPPORTED_CSS, is_displayed=True) - - -@pytest.mark.asyncio -@pytest.mark.without_interventions -async def test_disabled(client): - await client.navigate(URL) - assert client.await_css(UNSUPPORTED_CSS, is_displayed=True) - assert not client.find_css(SUPPORTED_CSS, is_displayed=True)