tor-browser

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

commit 928f562d51204308520086dd744b3ef83460ecbe
parent 41af54efe3f1f3b29b8e8a6b9c0335e8a293c722
Author: Thomas Wisniewski <twisniewski@mozilla.com>
Date:   Thu, 16 Oct 2025 16:12:13 +0000

Bug 1975951 - update our CSS intervention to un-hide product images on dell.com; r=webcompat-reviewers,ksenia

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

Diffstat:
Mbrowser/extensions/webcompat/injections/css/bug1975951-www.dell.com-reveal-product-images.css | 2+-
Mtesting/webcompat/interventions/tests/test_1975951_dell_com.py | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/browser/extensions/webcompat/injections/css/bug1975951-www.dell.com-reveal-product-images.css b/browser/extensions/webcompat/injections/css/bug1975951-www.dell.com-reveal-product-images.css @@ -7,6 +7,6 @@ * Bug #1975951 - https://bugzilla.mozilla.org/show_bug.cgi?id=1975951 * WebCompat issue #156739 - https://webcompat.com/issues/156739 */ -.media-gallery-mfe.variant-stack.variant-stack .hero-dell-media figure { +.media-gallery-mfe.variant-stack-v2 .hero-dell-media figure { aspect-ratio: unset; } diff --git a/testing/webcompat/interventions/tests/test_1975951_dell_com.py b/testing/webcompat/interventions/tests/test_1975951_dell_com.py @@ -4,9 +4,9 @@ import pytest URL = "https://www.dell.com/nl-nl/shop/dell-laptops/scr/laptops" -PRODUCTS_CSS = ".media-gallery-mfe.variant-stack" +PRODUCTS_CSS = ".media-gallery-mfe.variant-stack-v2" POPUP_CSS = "#didomi-notice-agree-button" -IMAGES_CSS = ".media-gallery-mfe.variant-stack.variant-stack .hero-dell-media figure" +IMAGES_CSS = ".media-gallery-mfe.variant-stack-v2 .hero-dell-media figure" async def are_images_fullsize(client):