commit 5a4ca5b7410649b0c36ab5a707a8f9d52811ee38
parent 19746ea6138822b8106b501f471a342dbf001c7c
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date: Thu, 8 Jan 2026 07:02:25 +0000
Bug 1898994 - remove our UA override for eportal.uestc.edu.cn; r=ksenia,webcompat-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D278134
Diffstat:
2 files changed, 0 insertions(+), 37 deletions(-)
diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json
@@ -2431,21 +2431,6 @@
}
]
},
- "1898994": {
- "label": "eportal.uestc.edu.cn",
- "bugs": {
- "1898994": {
- "issue": "firefox-blocked-completely",
- "matches": ["*://eportal.uestc.edu.cn/*"]
- }
- },
- "interventions": [
- {
- "platforms": ["all"],
- "ua_string": ["add_Chrome"]
- }
- ]
- },
"1898996": {
"label": "oculus.com and meta.com",
"bugs": {
diff --git a/testing/webcompat/interventions/tests/test_1898994_eportal_uestc_edu_cn.py b/testing/webcompat/interventions/tests/test_1898994_eportal_uestc_edu_cn.py
@@ -1,22 +0,0 @@
-import pytest
-
-URL = "https://eportal.uestc.edu.cn/new/portal/browerTips.html"
-
-SUPPORTED_CSS = "input[id=username], #ampLoginArticle"
-UNSUPPORTED_CSS = "#norSupportBrowser"
-
-
-@pytest.mark.asyncio
-@pytest.mark.with_interventions
-async def test_enabled(client):
- await client.navigate(URL)
- client.await_css(SUPPORTED_CSS, is_displayed=True)
- assert not client.find_css(UNSUPPORTED_CSS, is_displayed=True)
-
-
-@pytest.mark.asyncio
-@pytest.mark.without_interventions
-async def test_disabled(client):
- await client.navigate(URL)
- client.await_css(UNSUPPORTED_CSS, is_displayed=True)
- assert not client.find_css(SUPPORTED_CSS, is_displayed=True)