commit 5504d457aac8b00c04798b80186529d0d8cffbd9
parent ba5e430dea9bd9b5689c8617da7c0f7c1f4e1860
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Wed, 8 Oct 2025 13:38:21 +0000
Bug 1935968 - remove our UA override for cfspart-idp.impots.gouv.fr; r=denschub,webcompat-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D267804
Diffstat:
2 files changed, 0 insertions(+), 42 deletions(-)
diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json
@@ -4070,21 +4070,6 @@
}
]
},
- "1935968": {
- "label": "cfspart-idp.impots.gouv.fr",
- "bugs": {
- "1935968": {
- "issue": "firefox-blocked-completely",
- "matches": ["*://cfspart-idp.impots.gouv.fr/*"]
- }
- },
- "interventions": [
- {
- "platforms": ["android"],
- "ua_string": ["Chrome", "add_Firefox_as_Gecko"]
- }
- ]
- },
"1939248": {
"label": "rosasthai.com",
"bugs": {
diff --git a/testing/webcompat/interventions/tests/test_1935968_cfspart-idp_impots_gouv_fr.py b/testing/webcompat/interventions/tests/test_1935968_cfspart-idp_impots_gouv_fr.py
@@ -1,27 +0,0 @@
-import pytest
-from webdriver.error import NoSuchElementException
-
-URL = "https://cfspart-idp.impots.gouv.fr/oauth2/authorize"
-HERO_CSS = "#banniereSmartTexte"
-OBSOLETE_CSS = "#obsolete.erreur.alert"
-
-
-@pytest.mark.only_platforms("android")
-@pytest.mark.asyncio
-@pytest.mark.with_interventions
-async def test_enabled(client):
- await client.navigate(URL)
- assert client.await_css(HERO_CSS, is_displayed=True)
- try:
- assert not client.await_css(OBSOLETE_CSS, timeout=5, is_displayed=True)
- except NoSuchElementException:
- assert 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(HERO_CSS, is_displayed=True)
- assert client.await_css(OBSOLETE_CSS, is_displayed=True)