tor-browser

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

commit 778d6858a6673a35a4af11af04f2c3166fab0500
parent d9d281b4dd896012f82ff5c2ecb8dbd900087deb
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Wed,  5 Nov 2025 18:20:15 +0000

Bug 1949152 - remove our UA override for www.gatufotogruppen.se; r=webcompat-reviewers,ksenia

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

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

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -4510,21 +4510,6 @@ } ] }, - "1949152": { - "label": "gatufotogruppen.com", - "bugs": { - "1949152": { - "issue": "firefox-blocked-completely", - "matches": ["*://www.gatufotogruppen.se/*"] - } - }, - "interventions": [ - { - "platforms": ["all"], - "ua_string": ["Chrome_with_FxQuantum"] - } - ] - }, "1949466": { "label": "lapalabradeldia.com", "bugs": { diff --git a/testing/webcompat/interventions/tests/test_1949152_gatufotogruppen_com.py b/testing/webcompat/interventions/tests/test_1949152_gatufotogruppen_com.py @@ -5,14 +5,7 @@ DESIRED_CSS = ".ultp-block-image" @pytest.mark.asyncio -@pytest.mark.with_interventions -async def test_enabled(client): - await client.navigate(URL) - assert client.find_css(DESIRED_CSS) - - -@pytest.mark.asyncio @pytest.mark.without_interventions -async def test_disabled(client): +async def test_regression(client): await client.navigate(URL) - assert not client.find_css(DESIRED_CSS) + assert client.find_css(DESIRED_CSS, is_displayed=True)