tor-browser

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

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

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

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

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