commit dd3c4ca9caebad1f7a541c73a22fe681ec9c526d
parent 3656c3a2db10e1856bc789edacd2760a697dde76
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Fri, 31 Oct 2025 15:54:27 +0000
Bug 1944022 - remove our FastClick webcompat intervention for drafthouse.com; r=webcompat-reviewers,ksenia
Differential Revision: https://phabricator.services.mozilla.com/D270746
Diffstat:
2 files changed, 0 insertions(+), 28 deletions(-)
diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json
@@ -82,10 +82,6 @@
"issue": "broken-interactive-elements",
"matches": ["*://bathpublishing.com/*"]
},
- "1944022": {
- "issue": "broken-interactive-elements",
- "matches": ["*://drafthouse.com/*"]
- },
"1944024": {
"issue": "broken-interactive-elements",
"matches": ["*://dylantalkstone.com/*"]
diff --git a/testing/webcompat/interventions/tests/test_1448747_124385_drafthouse_com.py b/testing/webcompat/interventions/tests/test_1448747_124385_drafthouse_com.py
@@ -1,24 +0,0 @@
-import pytest
-
-URL = "https://drafthouse.com/food-and-drink"
-SELECT_CSS = "select[name='market']"
-
-
-async def is_fastclick_active(client):
- async with client.ensure_fastclick_activates():
- await client.navigate(URL)
- return client.test_for_fastclick(client.await_css(SELECT_CSS))
-
-
-@pytest.mark.only_platforms("android")
-@pytest.mark.asyncio
-@pytest.mark.with_interventions
-async def test_enabled(client):
- assert not await is_fastclick_active(client)
-
-
-@pytest.mark.only_platforms("android")
-@pytest.mark.asyncio
-@pytest.mark.without_interventions
-async def test_disabled(client):
- assert await is_fastclick_active(client)