Closed
Bug 310723
Opened 19 years ago
Closed 19 years ago
regression in rendering of my website with 1.5 beta involving overflow-x and overflow-y
Categories
(Core :: Web Painting, defect)
Tracking
()
RESOLVED
INVALID
People
(Reporter: r.smith, Assigned: roc)
References
()
Details
User-Agent: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b4) Gecko/20050908 Firefox/1.4 Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8b4) Gecko/20050908 Firefox/1.4 My website was created some time ago and tested and verified to work on Opera, Internet Explorer, Safari, Konqueror and Firefox version 1. I have just tested it on the new Forefox 1.5 Beta 1 and it does not render correctly. The menu on the left of the screen is squashed into a little box. Maybe the HTML on the site is not perfect, but if it works on all the major browsers and on previous versions of Firefox, I would have thought Firefox could have an 'imperfect HTML rendering mode' to deal with sites like this. Mine can't be the only one. Reproducible: Always
Comment 1•19 years ago
|
||
You have OVERFLOW-X: auto; in the .menu selector.
Removing that rule fixes the layout.
Firefox1.5 supports overflow-x and overflow-y properties.
I believe the rendering is correct of the site.
See the complete selector and it's rules:
.menu
{Z-INDEX: 6;
LEFT: 6;
TOP: 15;
HEIGHT: 85;
WIDTH: 150;
POSITION: absolute;
OVERFLOW-X: auto;
FILTER:alpha(opacity=75);
-MOZ-OPACITY: 0.7;
opacity: 0.7;
FONT-FAMILY:verdana;
# COLOR:#54001B;
COLOR: lightgrey;
FONT-SIZE:14px;
TEXT-ALIGN:right;}
Comment 2•19 years ago
|
||
To be clearer, the setting of overflow-x also sets overflow-y to auto in this case.
Updated•19 years ago
|
Assignee: nobody → roc
Component: General → Layout: View Rendering
Keywords: regression
Product: Firefox → Core
QA Contact: general → ian
Summary: regression in rendering of my website with 1.5 beta → regression in rendering of my website with 1.5 beta involving overflow-x and overflow-y
Version: unspecified → 1.8 Branch
Updated•6 years ago
|
Component: Layout: View Rendering → Layout: Web Painting
You need to log in
before you can comment on or make changes to this bug.
Description
•