tor-browser

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

commit 60e751fbe74191c8ef3b7b6eaceda98ece0d48f5
parent f2b5168eaac11395cc738dc9d52ef97711ab76ac
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Wed, 26 Nov 2025 23:06:57 +0000

Bug 1898937 - remove our UA override for www.goodyearfiaetrc.com; r=ksenia,webcompat-reviewers

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

Diffstat:
Mbrowser/extensions/webcompat/data/interventions.json | 15---------------
Mtesting/webcompat/interventions/tests/test_1898937_goodyearfiaetrc_com.py | 16+++-------------
2 files changed, 3 insertions(+), 28 deletions(-)

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -2248,21 +2248,6 @@ } ] }, - "1898937": { - "label": "goodyearfiaetrc.com", - "bugs": { - "1898937": { - "issue": "firefox-blocked-completely", - "matches": ["*://www.goodyearfiaetrc.com/standings*"] - } - }, - "interventions": [ - { - "platforms": ["all"], - "ua_string": ["Chrome_with_FxQuantum"] - } - ] - }, "1898938": { "label": "conference.amwell.com", "bugs": { diff --git a/testing/webcompat/interventions/tests/test_1898937_goodyearfiaetrc_com.py b/testing/webcompat/interventions/tests/test_1898937_goodyearfiaetrc_com.py @@ -2,21 +2,11 @@ import pytest URL = "https://www.goodyearfiaetrc.com/standings" -SUPPORTED_CSS = "#result #iframe" -UNSUPPORTED_TEXT = "Please open this Page in Chrome, Edge or Safari" - - -@pytest.mark.asyncio -@pytest.mark.with_interventions -async def test_enabled(client): - await client.navigate(URL, wait="none") - assert client.await_css(SUPPORTED_CSS, is_displayed=True) - assert not client.find_text(UNSUPPORTED_TEXT, is_displayed=True) +DEAD_TEXT = "Page not found" @pytest.mark.asyncio @pytest.mark.without_interventions -async def test_disabled(client): +async def test_if_site_returns(client): await client.navigate(URL, wait="none") - assert client.await_text(UNSUPPORTED_TEXT, is_displayed=True) - assert not client.find_css(SUPPORTED_CSS, is_displayed=True) + assert client.await_text(DEAD_TEXT, is_displayed=True)