Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

www.afisha.ru - Slider not working from the "Цена" tab #120455

Open
webcompat-bot opened this issue Apr 3, 2023 · 3 comments
Open

www.afisha.ru - Slider not working from the "Цена" tab #120455

webcompat-bot opened this issue Apr 3, 2023 · 3 comments
Labels
browser-firefox diagnosis-priority-p1 engine-gecko The browser uses the Gecko rendering engine priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. sitepatch-applied There is an UA override/intervention in place for this site trend-button OKR Label- Issues where buttons on the page are not functional
Milestone

Comments

@webcompat-bot
Copy link

webcompat-bot commented Apr 3, 2023

URL: https://www.afisha.ru/msk/theatre/

Browser / Version: Firefox 111.01 RUS 64bit
Operating System: Windows 10
Tested Another Browser: Yes Chrome

Problem type: Something else
Description: The "Цена" tab has a non-working slider
Steps to Reproduce:
When opening the "Цена" checkbox, we have all the frozen elements in it.

View the screenshot Screenshot
Browser Configuration
  • None

From webcompat.com with ❤️

@webcompat-bot webcompat-bot added the action-needsmoderation The moderation has not yet been completed label Apr 3, 2023
@webcompat-bot webcompat-bot added this to the needstriage milestone Apr 3, 2023
@webcompat-bot webcompat-bot added the browser-fixme This requires manual assignment for the browser name label Apr 3, 2023
@webcompat-bot webcompat-bot changed the title In the moderation queue. www.afisha.ru - see bug description Apr 4, 2023
@webcompat-bot webcompat-bot added browser-firefox engine-gecko The browser uses the Gecko rendering engine and removed browser-fixme This requires manual assignment for the browser name action-needsmoderation The moderation has not yet been completed labels Apr 4, 2023
@sv-calin
Copy link

sv-calin commented Apr 4, 2023

Thank you for reporting this issue, I was able to reproduce it.

afisha.slider.mp4

Tested on:
• Browser / Version: Firefox Nightly 113.0a1 (2023-04-03) / Firefox Release 111.0.1 / Chrome 111.0.5563.111
• Operating System: Windows 10

Notes:

  1. Reproducible on both Firefox Release and Nightly regardless of the ETP status
  2. Not reproducible on Chrome

Moving to Needsdiagnosis.

[qa_14/2023]

@sv-calin sv-calin changed the title www.afisha.ru - see bug description www.afisha.ru - Slider not working from the "Цена" tab Apr 4, 2023
@sv-calin sv-calin added priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. trend-button OKR Label- Issues where buttons on the page are not functional labels Apr 4, 2023
@sv-calin sv-calin modified the milestones: needstriage, needsdiagnosis Apr 4, 2023
@ksy36
Copy link
Contributor

ksy36 commented Apr 24, 2023

The site has pointer-events: none; for the slider, so it doesn't react on interaction:

.gNPvK {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: initial;
  height: calc(var(--pin-size)*1px);
  pointer-events: none;
  position: absolute;
  width: 100%;
}

It works in Chrome since they also have a webkit-specific style rule overriding pointer-events to auto;

      .gNPvK::-webkit-slider-thumb{
          appearance:none;
          -webkit-appearance:none;
          -moz-appearance:none;
          background-color:#0050ff;
          border-radius:50%;
          cursor:pointer;
          height:calc(var(--pin-size)*1px);
          pointer-events:auto;
          transform:translateY(-50%);
          -webkit-transition:transform .2s;
          transition:transform .2s;
          width:calc(var(--pin-size)*1px);
      }

We could add an intervention here and contact the site.

The intervention could be something like:

.gNPvK::-moz-range-thumb {
          background-color:#0050ff;
          pointer-events:auto;
      }

This is related to https://bugzilla.mozilla.org/show_bug.cgi?id=1735575

@ksy36 ksy36 added the action-needssitepatch This web bug needs a GoFaster site patch. label Apr 24, 2023
@ksy36 ksy36 modified the milestones: needsdiagnosis, needscontact Apr 24, 2023
@ksy36 ksy36 added sitepatch-applied There is an UA override/intervention in place for this site and removed action-needssitepatch This web bug needs a GoFaster site patch. labels May 3, 2023
@softvision-raul-bucata
Copy link

The button works now and filters are applied.

I've created a Bugzilla task to remove the intervention: https://bugzilla.mozilla.org/show_bug.cgi?id=1843287

Tested with:

Browser / Version: Firefox Nightly 117.0a1 (2023-07-12) (64-bit)
Operating System: Windows 10 PRO x64

Tested with:

Browser / Version: Firefox Nightly 117.0a1 (2015961955-🦎117.0a1-20230712214907🦎)
Operating System: Samsung A51 (Android 11) -1080 × 2400 pixels 20:9 aspect ratio (~405 ppi density)
Operating System: Google Pixel 3 (Android 12) -1080 x 2160 pixels, 18:9 ratio (~443 ppi density)

[inv_28/2023]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
browser-firefox diagnosis-priority-p1 engine-gecko The browser uses the Gecko rendering engine priority-normal severity-important A non-core broken piece of functionality, not behaving the way you would expect. sitepatch-applied There is an UA override/intervention in place for this site trend-button OKR Label- Issues where buttons on the page are not functional
Projects
None yet
Development

No branches or pull requests

5 participants