Scrollbars not showing in window.open popups, if sites pass the option `scrollbars=no` (i.e. consider removing support for `scrollbars=no`)
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
People
(Reporter: deep.bkp007, Unassigned)
References
()
Details
(Keywords: nightly-community, parity-chrome, regression)
Attachments
(5 files, 1 obsolete file)
Comment 1•7 years ago
|
||
Comment 5•7 years ago
|
||
Comment 7•7 years ago
|
||
| Comment hidden (offtopic) |
| Comment hidden (obsolete) |
| Comment hidden (offtopic) |
| Comment hidden (offtopic) |
| Comment hidden (offtopic) |
Comment 13•7 years ago
|
||
| Reporter | ||
Comment 14•7 years ago
|
||
Comment 15•7 years ago
|
||
Updated•7 years ago
|
Updated•7 years ago
|
Updated•7 years ago
|
Comment 16•7 years ago
|
||
Updated•7 years ago
|
Comment 17•6 years ago
|
||
I faced same issue mentioned here. 2 sites where I miss the vertical scrollbars
https://creditreport.paisabazaar.com/bureau/user-profile
https://mynation.net/
I can provide screenshots too.
Comment 18•6 years ago
|
||
Can someone who knows how to code try to fix this. I don't really understand what the current code does.
https://dxr.mozilla.org/mozilla-central/source/toolkit/components/windowwatcher/nsWindowWatcher.cpp
Current code:
1698 // default scrollbar to "on," unless explicitly turned off
1699 bool scrollbarsPresent = false;
1700 if (WinHasOption(aFeatures, "scrollbars", 1, &scrollbarsPresent) ||
1701 !scrollbarsPresent) {
1702 chromeFlags |= nsIWebBrowserChrome::CHROME_SCROLLBARS;
1703 }
1704 presenceFlag = presenceFlag || scrollbarsPresent;
1705
1706 return chromeFlags;
1707}
Do we just need this??
1698 // force scrollbar=on
1699 chromeFlags |= nsIWebBrowserChrome::CHROME_SCROLLBARS;
1700
1701 return chromeFlags;
1702}
| Assignee | ||
Updated•6 years ago
|
Comment 20•6 years ago
•
|
||
[editing bug summary for searchability, to mention window.open and scrollbars=no, and removing some stale/useless version flags]
Also: I don't know this particular area of code, but it looks to me like comment 18 is likely the right fix here.
Comment 21•6 years ago
|
||
Comment 22•6 years ago
|
||
Updated•6 years ago
|
Comment 23•6 years ago
•
|
||
(In reply to sandeep.pamarati from comment #17)
I faced same issue mentioned here. 2 sites where I miss the vertical scrollbars
https://creditreport.paisabazaar.com/bureau/user-profile
https://mynation.net/I can provide screenshots too.
Someone suggested me this workaround. While I am on the page whose vertical scroll bars are disappearing, i toggle the Inspector and there is an element called as "overflow: hidden;" I change this to overflow: scroll; Instantly, the vertical scrollbar appears.
[EDIT: screenshot posted here via send.firefox.com, added as attachment in comment 24]
This link has the URL that I visited.
I am not sure if this is because of any of the add-ons that I have installed.
Comment 24•6 years ago
|
||
Updated•3 years ago
|
Updated•1 year ago
|
Description
•