tor-browser

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

commit 978a604f0ed87db890b3e618144a68f6b8187580
parent 29383ea6133ca0140dbb6c8a8ae197e55fbce0fd
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Thu, 16 Oct 2025 16:12:16 +0000

Bug 1993452 - add a CSS webcompat intervention for www.lee.in; r=webcompat-reviewers,ksenia

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

Diffstat:
Mbrowser/extensions/webcompat/data/interventions.json | 17+++++++++++++++++
Abrowser/extensions/webcompat/injections/css/1993452-www.lee.in-fix-product-image-hovering.css | 12++++++++++++
2 files changed, 29 insertions(+), 0 deletions(-)

diff --git a/browser/extensions/webcompat/data/interventions.json b/browser/extensions/webcompat/data/interventions.json @@ -5357,5 +5357,22 @@ "ua_string": ["Chrome"] } ] + }, + "1993452": { + "label": "www.lee.in", + "bugs": { + "1993452": { + "issue": "broken-interactive-elements", + "matches": ["*://www.lee.in/*"] + } + }, + "interventions": [ + { + "platforms": ["desktop"], + "content_scripts": { + "css": ["1993452-www.lee.in-fix-product-image-hovering.css"] + } + } + ] } } diff --git a/browser/extensions/webcompat/injections/css/1993452-www.lee.in-fix-product-image-hovering.css b/browser/extensions/webcompat/injections/css/1993452-www.lee.in-fix-product-image-hovering.css @@ -0,0 +1,12 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/** + * www.lee.in - product image hover-zoom is broken + * Bug #1993452 - https://bugzilla.mozilla.org/show_bug.cgi?id=1993452 + * WebCompat issue #182023 - https://webcompat.com/issues/182023 + */ +.pdpImgContainer * .zoomEffect { + pointer-events: none; +}