Closed
Bug 2966
Opened 26 years ago
Closed 26 years ago
{compat} Spacing between top table and second table not even
Categories
(Core :: Layout, defect, P2)
Core
Layout
Tracking
()
VERIFIED
INVALID
M8
People
(Reporter: esther, Assigned: nisheeth_mozilla)
References
()
Details
problem: the spacing between the "Big Charts" table and the 2nd table "Support
our sponser" too close compared to 4.5. Text for entering a symbol on "Big
Charts" is too close to text box compared to 4.5
Update: found while doing the "top sites" checking. Using the latest seamonkey
builds available today 2/5.
Update: found while doing the "top sites" checking. Using the latest seamonkey
builds available today 2/5.
Comment 3•26 years ago
|
||
The two tables are separated by a FORM width an INPUT TYPE=HIDDEN.
Nav4 allocates space for this invisible item, while Raptor does not.
(test Feb 03 win95 non-debug).
====================test case====================
<HTML><HEAD></HEAD><BODY>
<TABLE BORDER="1" WIDTH="600">
<TR><TD>
hello
</TD></TR>
</TABLE>
<FORM NAME="fIChart" METHOD="get" ACTION="whatever">
<INPUT TYPE="hidden" NAME="symb" VALUE="">
</FORM>
<TABLE BORDER="1" WIDTH="600">
<TR><TD>
goodbye
</TD></TR>
</TABLE>
</BODY>
</HTML>
====================test case====================
Comment 4•26 years ago
|
||
... and, yes, that form above is useless, but it is in the original HTML from
bigchart.com
Summary: Spacing between top table and second table not even → [4.xP]Spacing between top table and second table not even
The page lays out properly with a current build; however, the attributes in the
body tag are lost thus showing no background image
Updated•26 years ago
|
QA Contact: 4110 → 4144
Checked in a code yesterday to handle multiple bodies. This should resolve the
problem that Kipp has mentioned ( body attributes being ignored ).
The vert whitespace problem is still here. This bug belongs to kipp, so I'll ask
nisheeth to take a look.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M6 → M7
Assignee | ||
Comment 9•26 years ago
|
||
Accepting bug and setting milestone to M7...
Assignee | ||
Comment 10•26 years ago
|
||
The real problem here is that we do allocate vertical space for <P> tags between
two <TABLE> tags.
A simple test case is:
<HTML><HEAD></HEAD><BODY>
<TABLE BORDER="1" WIDTH="600">
<TR><TD>
hello
</TD></TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="600">
<TR><TD>
goodbye
</TD></TR>
</TABLE>
</BODY>
</HTML>
In Navigator, the two tables have vertical space between them, whereas, in Gecko
they don't.
Assignee | ||
Comment 11•26 years ago
|
||
The previous comment should read "... we do not allocate vertical space for <P>
tags ...".
Assignee | ||
Updated•26 years ago
|
Target Milestone: M7 → M8
Assignee | ||
Comment 12•26 years ago
|
||
This is all the analysis I have time for in this milestone. I'm moving this out
to M8.
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → INVALID
Summary: [4.xP]Spacing between top table and second table not even → {compat} Spacing between top table and second table not even
Comment 13•26 years ago
|
||
Ignoring empty <P> elements, which is indeed the reason for the problems, is
the *right thing to do* according to HTML4. Marking bug INVALID.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 14•26 years ago
|
||
Agreed. Marking as Verified Invalid.
You need to log in
before you can comment on or make changes to this bug.
Description
•