tor-browser

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

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

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

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

Diffstat:
Mbrowser/extensions/webcompat/data/interventions.json | 17+++++++++++++++++
Abrowser/extensions/webcompat/injections/css/1993454-www.wrangler.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 @@ -5374,5 +5374,22 @@ } } ] + }, + "1993454": { + "label": "www.wrangler.in", + "bugs": { + "1993454": { + "issue": "broken-interactive-elements", + "matches": ["*://www.wrangler.in/*"] + } + }, + "interventions": [ + { + "platforms": ["desktop"], + "content_scripts": { + "css": ["1993454-www.wrangler.in-fix-product-image-hovering.css"] + } + } + ] } } diff --git a/browser/extensions/webcompat/injections/css/1993454-www.wrangler.in-fix-product-image-hovering.css b/browser/extensions/webcompat/injections/css/1993454-www.wrangler.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.wrangler.in - product image hover-zoom is broken + * Bug #1993454 - https://bugzilla.mozilla.org/show_bug.cgi?id=1993454 + * WebCompat issue #182026 - https://webcompat.com/issues/182026 + */ +.pdpImgContainer * .zoomEffect { + pointer-events: none; +}