Closed
Bug 2267
Opened 26 years ago
Closed 26 years ago
table layout problems
Categories
(Core :: Layout: Tables, defect, P1)
Tracking
()
VERIFIED
FIXED
M5
People
(Reporter: dbaron, Assigned: karnaze)
References
()
Details
Attachments
(1 file)
(deleted),
text/html
|
Details |
The header row doesn't line up with the rest of the table - the columns are all
off by two.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Comment 2•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Assignee | ||
Updated•26 years ago
|
Target Milestone: M4 → M5
Assignee | ||
Comment 3•26 years ago
|
||
moving to M5
Assignee | ||
Updated•26 years ago
|
Priority: P2 → P1
Assignee | ||
Comment 4•26 years ago
|
||
It now looks much worse than the description.
Reporter | ||
Comment 5•26 years ago
|
||
It changed. It looks like perhaps a parser bug. Could this be ending the
table:
<tr>
<b><TH>Build Time</th>
<TH>Guilty</th>
</b></tr>
I don't have time to try simple test cases right now.
Comment 6•26 years ago
|
||
David Baron: You got it. By the way, this particular bustage was fixed
somewhere between 01/29 and 02/28 (see bug #2757), but has returned.
Here's the test case pasted in from bug #2757. (Also, Chris -- notice how in
the test case that the 'green' paints the 'cellspacing' region -- that's bug
#5069 "waiting to strike" ;).
<html><head></head><body>
<table border cellspacing=2>
<tr>
<td>Click name to see
<td rowspan=2 bgcolor=00ff00>Mac Clbr Opt
</tr>
<tr>
<B> <!-- these bold tags break the table -->
<td>Guilty
</B>
</tr>
<tr>
<td>
<td bgcolor=yellow>L C
</tr>
</table>
</body></html>
Comment 7•26 years ago
|
||
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 8•26 years ago
|
||
Fixed (with 4/23/99 checkin) the original problem of cells with rowspans being
too tall. There is also a problem with inset borders on some table cells on this
url (the right and bottom edges don't show up). I have filed bug 5425 to cover
this.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 10•26 years ago
|
||
Using 4/26 build with the HTML code below:
<html>
<head>
<title>2267</title>
</head>
<body>
<table border cellpadding=0 cellspacing=15>
<tr>
<td rowspan=2>1,1</td>
<td>1,2</td>
</tr>
<tr>
<td>2,2</td>
</tr>
</table>
</body>
</html>
verified bug fixed in regards to the rowspan problem.
You need to log in
before you can comment on or make changes to this bug.
Description
•