Zoom selection dropdown doesn’t open on codepen.io website
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
People
(Reporter: asoncutean, Assigned: emilio)
References
(Regression)
Details
(Keywords: regression)
Attachments
(3 files)
Affected versions
- 96.0a1 (2021-11-10)
- 95.0b5
- 94.0.1
Affected platforms
- Windows 10
- macOS 11.0
- Ubuntu 16
Steps to reproduce
- Open https://codepen.io/MSEdgeDev/pen/mxeOGW
- Resize the browser width in order to trigger the zoom scale dropdown appearance on the page footer
- Click on the zoom scale dropdown
Expected result
- The dropdown is expanded
Actual result
- The dropdown attempts to open, flickers a second, but it doesn't expand
Regression range
- Very old regression, I could restrained the regression window to the following:
- Last good revision: 564b225d553547fe4aa9a1039278f695c9507db9 (2016-04-13)
- First bad revision: 91115264629dfaacf2d60d52a3eff89c18c5af0d (2016-04-14)
- Pushlog:
https://hg.mozilla.org/mozilla-central/pushloghtml?fromchange=564b225d553547fe4aa9a1039278f695c9507db9&tochange=91115264629dfaacf2d60d52a3eff89c18c5af0d
Other notes
- Works on Chrome and Safari
- There is no message inside the browser console
Reporter | ||
Updated•4 years ago
|
![]() |
||
Comment 1•4 years ago
|
||
Regression window:
https://hg.mozilla.org/integration/mozilla-inbound/pushloghtml?fromchange=ac43dab284afd189ed2b0f4c1906a45e0c1736dd&tochange=9424f63828ebaf3563cad850ce1cc5f865231f70
Comment 2•4 years ago
|
||
Probably the same cause as 1305017.
Assignee | ||
Comment 3•4 years ago
|
||
Comment 4•4 years ago
|
||
Set release status flags based on info from the regressing bug 1253486
Assignee | ||
Comment 5•4 years ago
|
||
Updated•4 years ago
|
Assignee | ||
Comment 6•4 years ago
|
||
The root cause is bug 1440506 but the patch above avoids the reframe altogether which is nice.
Updated•4 years ago
|
Updated•4 years ago
|
Comment 9•4 years ago
|
||
bugherder |
Updated•4 years ago
|
Reporter | ||
Comment 11•4 years ago
|
||
Verified fixed with latest Nightly Fx 96 (2021-11-22) on Windows 10, Ubuntu 20.04, macOS 12.1.
Assignee | ||
Comment 13•4 years ago
|
||
It depends on a few other optimizations like bug 1735533 and so on. Not opposed to try rebasing all that if you think it's worth it, but it does feel a little bit scary. It's probably fine if there's a good reason though, what would be the reasoning for that? (Other than "slightly annoying bug"?)
![]() |
||
Comment 14•4 years ago
|
||
I just encountered this bug on the website https://www.plus-a.net/uranai/ .
I wish I could work around it with user CSS and scripting....
Assignee | ||
Comment 15•4 years ago
|
||
On that page you can work around it with something like .searchform select { transform: translate(0, 0) }
or so
![]() |
||
Comment 16•4 years ago
|
||
(In reply to Emilio Cobos Álvarez (:emilio) from comment #15)
On that page you can work around it with something like
.searchform select { transform: translate(0, 0) }
or so
Ok, Thanks for the hints!
The following user CSS is a workaround.
.form:active {
position:unset!important;
top: unset!important;
}
Description
•