Closed
Bug 1010
Opened 26 years ago
Closed 26 years ago
Links in don't work inside rowspan'd cells
Categories
(Core :: Layout: Tables, defect, P1)
Tracking
()
People
(Reporter: angus, Assigned: joki)
References
()
Details
In the test case below, links only work for the top half of the list items. The
links in the lower list items don't work (no mouseover feedback, etc.) I was
able to isolate the problem to the "rowspan" attribute on the first TD. Removing
either the rowspan attribute, or the second row of the table solves the problem.
This is a simplified test case from the "real" page, which is the URL mentioned
above. I've noticed this on some other tables pages, too.
<TABLE BORDER=1 WIDTH="100%">
<tr>
<TD VALIGN=TOP rowspan=2>
<ul>
<li><A href="500in1ul.html">500 list items in a single UL</a></li>
<li><a href="500in25uls.html">500 list items in 25 top-level ULs</a></li>
<li><a href="500in25nesteduls.html">500 list items in a 25-level nested
UL</a></li>
<li><a href="300textfields.html">300 text input form fields</a></li>
<li><a href="test6.html">Massively nested tables</a></li>
<li><a href="12nesteddivs.html">Massively nested DIVs with padding and
borders</a></li>
<li><a href="select.html">1000 OPTIONs in a single SELECT form element</a></li>
<li><a href="wbtbltxt.html">10,000 cell table with text in each cell</a></li>
<li><a href="wbtblclr.html">10,000 cell table with text and color in each
cell</a></li>
<li><a href="wblnks.html">A 713k HTML document packed full of links</a></li>
<li><a href="wbbightm.html">Extraordinarily long HTML doc (approx 1
Meg)</a></li>
<li><a href="wbclrtxt.html">Another large HTML doc, with colored text</a></li>
<li><a href="wbhtmmix.html">A relatively large (150k) document with an average
mix of HTML
content</a></li>
</ul>
</TD>
<td>foo 1</td>
<td>foo 2</td>
</TR>
<TR>
<td>Foo 3</td>
<td>Foo 4</td>
</TR>
</TABLE>
</BODY>
</HTML>
the cell frame is the correct size. the problem seems to be that the row frame
isn't as tall as the sum of the row that the cell spans. It is legal for a
frame to extend beyond the bounds of its parent, so I think the event code
should handle this.
It looks to me as if this bug is a duplicate (or near-duplicate) of 786.
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Comment 5•9 years ago
|
||
Commits pushed to master at https://github.com/mozilla/olympia
https://github.com/mozilla/olympia/commit/c3837614a4a4d2bbe90ac39855d2a8e12e6c660a
Update the copy related to auto signing unlisted add-ons (issue #1010)
https://github.com/mozilla/olympia/commit/08bdb87694880f5c53d182926161f61567bf8d13
Merge pull request #1031 from magopian/1010-update-copy-auto-sign-unlisted-addons
Update the copy related to auto signing unlisted add-ons (issue #1010)
You need to log in
before you can comment on or make changes to this bug.
Description
•