tor-browser

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

commit 3583e1024d2a63e5cbefb8abe65bf682ada8534b
parent 928f562d51204308520086dd744b3ef83460ecbe
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Thu, 16 Oct 2025 16:12:13 +0000

Bug 1991388 - remove our Android-only UA override for gismeteo.ru; r=webcompat-reviewers,ksenia

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

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

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -5427,21 +5427,6 @@ } ] }, - "1991388": { - "label": "gismeteo.ru", - "bugs": { - "1991388": { - "issue": "desktop-layout-not-mobile", - "matches": ["*://gismeteo.ru/*"] - } - }, - "interventions": [ - { - "platforms": ["android"], - "ua_string": ["Chrome_with_FxQuantum"] - } - ] - }, "1992121": { "label": "tutor-uksouth.classroom.cloud", "bugs": { diff --git a/testing/webcompat/interventions/tests/test_1991388_gismeteo_ru.py b/testing/webcompat/interventions/tests/test_1991388_gismeteo_ru.py @@ -7,17 +7,8 @@ DESKTOP_CSS = ".search-desktop" @pytest.mark.only_platforms("android") @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(MOBILE_CSS, is_displayed=True) assert not client.find_css(DESKTOP_CSS, is_displayed=True) - - -@pytest.mark.only_platforms("android") -@pytest.mark.asyncio -@pytest.mark.without_interventions -async def test_disabled(client): - await client.navigate(URL) - assert client.await_css(DESKTOP_CSS, is_displayed=True) - assert not client.find_css(MOBILE_CSS, is_displayed=True)