wallapop.com - "Precio" filter slider does not work
Categories
(Web Compatibility :: Site Reports, defect, P2)
Tracking
(Webcompat Priority:P2, Webcompat Score:4, firefox144 fixed)
| Tracking | Status | |
|---|---|---|
| firefox144 | --- | fixed |
People
(Reporter: tschuster, Assigned: twisniewski)
References
(Depends on 1 open bug, )
Details
(Keywords: webcompat:platform-bug, webcompat:site-report, webcompat:sitepatch-applied, Whiteboard: [webcompat:sightline])
User Story
platform:windows,mac,linux,android impact:feature-broken configuration:general affects:all branch:release diagnosis-team:layout user-impact-score:600
Attachments
(3 files)
Environment:
Operating system: Linux
Firefox version: Firefox 141.0
Steps to reproduce:
- Go to https://es.wallapop.com/search?category_id=100
- Scroll down
- Try to change the euro range with the "Precio" (price) slider
Actual Behavior:
The slider is not movable using the mouse.
Notes:
- Reproduces regardless of the status of ETP
- Reproduces in firefox-nightly, and firefox-release
- Does not reproduce in chrome
| Reporter | ||
Updated•8 months ago
|
| Reporter | ||
Comment 1•8 months ago
|
||
I mostly filed this because it seems very similar to bug 1968198.
Updated•8 months ago
|
Comment 2•8 months ago
|
||
Similar to bug 1968198, there are two sliders on top of each other. I don't see any -webkit-slider-* attributes during a quick search, though.
Comment 3•7 months ago
|
||
(In reply to Dennis Schubert [:denschub] from comment #2)
Similar to bug 1968198, there are two sliders on top of each other. I don't see any
-webkit-slider-*attributes during a quick search, though.
They do have some -webkit-slider-* styles, e.g.: these ones which I found in CSS generated by testcase-reducer:
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
pointer-events: all;
height: 32px;
width: 32px;
background-color: #fff;
border: 10px solid #015354;
border-radius: 50%;
box-shadow: 0 0 0 1px #fff;
background-clip: content-box;
cursor: pointer;
}
input[type=range]::-webkit-slider-thumb:hover {
background-color: #fff;
border: 10px solid #015354;
box-shadow: 0 0 0 4px #3dd2ba;
}
input[type=range]::-webkit-slider-thumb:active {
box-shadow: 0 0 0 4px #3dd2ba;
}
input[type=range]:focus::-webkit-slider-thumb {
background-color: #fff;
border: 10px solid #015354;
box-shadow: 0 0 0 4px #3dd2ba;
}
Comment 4•7 months ago
|
||
(In reply to Tom Schuster (MoCo) from comment #0)
Actual Behavior:
The slider is not movable using the mouse.
Clicks aren't being registered here because they site explicitly has pointer-events:none in a rule for input[type="range"]:
input[type=range] {
[...]
pointer-events: none;
Then they use the aforementioned webkit-prefixed pseudos to make the slider-thumbs accept pointer-events -- but only for browsers that recognize those pseudos, which is not us.
Comment 5•7 months ago
|
||
| Assignee | ||
Updated•7 months ago
|
| Assignee | ||
Comment 6•7 months ago
|
||
Updated•7 months ago
|
Comment 8•7 months ago
|
||
| bugherder | ||
| Assignee | ||
Updated•7 months ago
|
Updated•7 months ago
|
| Assignee | ||
Comment 9•5 months ago
|
||
This intervention no longer seems necessary; I can adjust the slider with or without it.
| Assignee | ||
Updated•5 months ago
|
| Assignee | ||
Comment 10•5 months ago
|
||
Comment 11•5 months ago
|
||
Comment 12•5 months ago
|
||
| bugherder | ||
Description
•