Buttons don't support scrollbars (overflow:scroll/auto) in Firefox
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
People
(Reporter: dholbert, Unassigned)
Details
Attachments
(2 files)
I'm not sure there's a huge demand for this, but I noticed it as an interop difference between us and Chromium/WebKit in response to IanK's paranthetical in https://github.com/w3c/csswg-drafts/issues/7714#issuecomment-1877870277
Apparently <button style="overflow:scroll"> (and "auto") can successfully add scrollbars in Chromium and Safari, but not in Firefox.
STR:
- Load testcase.
- Try to scroll the button to find the text "YouFoundMe" on the right side or the bottom side of the button's content.
ACTUAL RESULTS:
No scrollbars; no way to reach the "YouFoundMe" text.
EXPECTED RESULTS:
Maybe there should be scrollbars so that the overflowing text can be found (per the overflow
styling).
Reporter | ||
Comment 1•1 year ago
|
||
Reporter | ||
Comment 2•1 year ago
|
||
Reporter | ||
Comment 3•1 year ago
•
|
||
As you can see in the screenshot, Chromium/WebKit show scrollbars.
And also, as you might expect/hope: clicking the scrollbars does not seem to actually click the button (at least: if I add an onclick handler for the button, that handler doesn't fire when I click or click-and-drag the scrollbar).
Description
•