Closed
Bug 1906
Opened 26 years ago
Closed 26 years ago
<caption> tag not working "When placed inside a <tr>"
Categories
(Core :: Layout: Tables, defect, P2)
Tracking
()
VERIFIED
FIXED
M5
People
(Reporter: jgleason, Assigned: harishd)
References
Details
No specific URL.. Caption tags do not display at all in a table...
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
This doesn't make sense. Captions are visible on lots of tables and I've seen
them properly rendered on many different machines on all platforms. jgleason,
could you please send me a specific document where captions do not display? The
only thing I can think of is you might be looking at a page with malformed HTML
source, and the caption is getting dropped out of the table by the parser.
Summary: <caption> tag not working → <caption> tag not working "When placed inside a <tr>"
That's what I get for not sleeping. It works find for normal HTML. Good work on
the table renderer. It is nice to see real tables rendering quickly.
reassigned to Rick as a parser bug. Rick, Nav4 parser supports inserting the
caption into the table "correctly" even when the caption is inside a tr. Test
case:
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 >
<TR>
<caption align=top>top caption</caption>
<TD>hello, I'm Mr. Ed</TD>
</TABLE>
<br><br><br>
<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 >
<TR>
<caption align=bottom>bottom caption</caption>
<TD> hello, I'm Mr. Ed</TD>
</TABLE>
Comment 6•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
*** Bug 3718 has been marked as a duplicate of this bug. ***
Have a fix for handling illegal contents in table. However, I got to do a lot
more testing that would not be possible within the M4 time frame. So, moving
the milestone to M5.
Status: NEW → RESOLVED
Closed: 26 years ago → 26 years ago
Resolution: --- → FIXED
<CAPTION> tag placed after a <TR> is considered as misplaced content. I have
checked in the ability for the parser to handle such misplaced ( or rather
illegal ) contents.
Marking the bug fixed.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 10•26 years ago
|
||
Using 5/19 build on Win NT, verified bug fixed.
You need to log in
before you can comment on or make changes to this bug.
Description
•