Closed
Bug 130882
Opened 23 years ago
Closed 22 years ago
anchor tag continues to edge of window whem in list item tag
Categories
(Core :: Layout, defect, P4)
Tracking
()
RESOLVED
INVALID
Future
People
(Reporter: laotzu, Assigned: attinasi)
References
()
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.9+)
Gecko/20020313
BuildID: 2002031303
The example link in the given URL can be clicked anywhere from the end of the
text all the way to the end of the window.
Reproducible: Always
Steps to Reproduce:
1. Open the given URL.
2. Move the mouse over the link 'Some Link Here', and then to the right of the link.
Actual Results: As you move the mouse to the right of the link, the hand cursor
remains and you can still click to activate the link.
Expected Results: Clicking on the space to the right of link should do nothing,
and a normal arrow cursor should exist.
Example HTML is:
<ul> <a href="http://poison.ous.ca/"><li>Link Here</a> More Text</ul>
Comment 1•23 years ago
|
||
Um... your <a> starts before the <li>, so all of the <li> is inside the anchor.
The <li> extends all the way across, hence so does the anchor. <li> is a
block, <a> is an inline, we end up having to promote <a> to a block because
inlines cannot contain blocks.
Fixing your markup would be a good first step...
Updated•23 years ago
|
Priority: -- → P4
Updated•23 years ago
|
Status: UNCONFIRMED → NEW
Ever confirmed: true
Updated•23 years ago
|
Target Milestone: --- → Future
Comment 3•22 years ago
|
||
Marking invalid, since I feel that our rendering is correct given that markup.
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → INVALID
You need to log in
before you can comment on or make changes to this bug.
Description
•