Closed
Bug 34586
Opened 25 years ago
Closed 25 years ago
The page is not being displayed correctly: missing top section of the page (with ad and all)
Categories
(Core :: Layout, defect, P3)
Tracking
()
People
(Reporter: jkwan, Assigned: vidur)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; N; Win98; en-US; m14) Netscape6/6.0b1
BuildID: 2000033112
The top section is missing, this includes the textfield, picture and navigation
tabs. Only main body of the page appears in the build I have, the top
"banner/header" part is completely missing. Perhaps the page isn't written
properly?
Reproducible: Always
Steps to Reproduce:
1. Go to the URL
2. See the navigation tabs missing
3. See the the banner missing
Actual Results: I saw a page that had the "main" section of the web page but
was missing the navigation tabs and the web site name banner.
Expected Results: Mozilla should have displayed the whole page, include the
missing elements.
Comment 1•25 years ago
|
||
-> Layout
Assignee: asadotzler → troy
Status: UNCONFIRMED → NEW
Component: Browser-General → Layout
Ever confirmed: true
QA Contact: jelwell → petersen
The content that isn't being displayed is inside of a MAP element. The HTML4
spec indicates it's fine to put block-level content into a MAP
However, html.css has it marked as 'display:none' and so nothing gets
displayed. Reassigning to vidur since this looks like a content object issue
Assignee: troy → vidur
Comment 3•25 years ago
|
||
Known problem. If we say
MAP { display: block; }
...then we are correct per HTML4 but we break lots of pages. If we say
MAP { display: none; }
...then we are wrong and we break lots of other pages. If we say
MAP { diisplay: inline; }
...then we are wrong again, and break a third set of pages.
Damned if we do, damned if we don't. Arg. A silly solution has been proposed
in bug 11431. Marking DUP.
*** This bug has been marked as a duplicate of 11431 ***
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•