Closed
Bug 1891
Opened 26 years ago
Closed 25 years ago
Only a small part of a table cell responds to user events
Categories
(Core :: Layout: Tables, defect, P2)
Tracking
()
VERIFIED
FIXED
M5
People
(Reporter: johan.a.eklund, Assigned: joki)
Details
In a left aligned table cell (width=600, 1 row, 2 cells) with no content except
only the leftmost 5 pixels or so of the cell respond to events like
onMouseOver and onClick.
Comment 3•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
|
Status: NEW → ASSIGNED
Target Milestone: M4 → M5
Assignee | ||
Comment 4•26 years ago
|
||
Not critical for M4 at this point, moving to M5
Assignee | ||
Updated•25 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•25 years ago
|
||
Fixed. Attaching my test case. It should be noted that when crossing into
those leftmost 5 pixels you get an additional mouseover event. This event is
from the mouseover of the text and it bubbles up to the cell. This is intended
behavior. Its easier to test this in viewer with visual debugging on as you can
then see the size of the  
<html>
<head>
<title>No events on table cell</title>
</head>
<body>
<table width=600 border=1>
<tr>
<td onmouseover="dump('mouseover cell 1 from '+event.target+'\n');">
 
</td>
<td onmouseover="dump('mouseover cell 2 from '+event.target+'\n');">
 
</td>
</tr>
</table>
</body>
</html>
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•25 years ago
|
||
Using 4/26 Viewer, verified bug fixed.
You need to log in
before you can comment on or make changes to this bug.
Description
•