Open
Bug 476680
Opened 16 years ago
Updated 3 years ago
getting a horizontal scroll bar on the first run page
Categories
(Firefox :: General, defect)
Tracking
()
NEW
People
(Reporter: sspitzer, Unassigned)
References
()
Details
getting a horizontal scroll bar on the first run page
my screen is 1680 x 1050.
I haven't confirmed it, but see this code snippet:
if (screen.availWidth >= 1600)
defaultWidth = (screen.availWidth / 2) - 20;
http://bonsai.mozilla.org/cvsblame.cgi?file=mozilla/browser/base/content/browser.js&rev=1.1033#755
I think that might be setting my default width to 820 px. (that seems right,
if you look at the screen shot, https://bug436884.bugzilla.mozilla.org/attachment.cgi?id=325591)
If sites are typically optimized for 1024, do you think that when the
availWidth is >= 1600, we should make sure the defaultWidth is never smaller
than 1024?
something like:
if (screen.availWidth >= 1600)
defaultWidth = Math.max((screen.availWidth / 2) - 20, 1024);
spun off of bug #436884
Comment 1•16 years ago
|
||
We already filed bug 420525 :-)
Comment 2•16 years ago
|
||
(In reply to comment #1)
> We already filed bug 420525 :-)
Although, that's just a pre-determined size, rather than a client-side code fix, I guess.
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•