Open
Bug 76481
Opened 23 years ago
Updated 7 months ago
onmouseover on COL element doesn't fire
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P5)
Tracking
()
NEW
Future
People
(Reporter: martin.honnen, Unassigned)
Details
Attachments
(1 file)
HTML 4 defines that onmouseover is an intrinsic event handler of the COL
element. However, when I set up a table col element with an onmouseover handler
that doesn't fire when I mouseover the table column.
<html>
<head>
<title>col test</title>
</head>
<body>
<table border="1">
<col style="background-color: blue;"
onmouseover="alert(event.type + ' for ' + event.target);"
>
<col style="background-color: red;">
<thead>
<tr>
<th>
Name
</th>
<th>
Home
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Kibo
</td>
<td>
<a href="http://www.kibo.com">http://www.kibo.com</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>
Reporter | ||
Comment 1•23 years ago
|
||
Confirmingh on build 2001041704 on WinNT4. It should work, here's the link to
the specs. http://www.w3.org/TR/html4/struct/tables.html#h-11.2.4.2
Updated•23 years ago
|
Target Milestone: --- → mozilla0.9.2
Comment 3•23 years ago
|
||
Not fixing this in the 0.9.2 timeframe
Status: NEW → ASSIGNED
Target Milestone: mozilla0.9.2 → Future
Updated•22 years ago
|
QA Contact: madhur → rakeshmishra
Updated•22 years ago
|
QA Contact: rakeshmishra → trix
Comment 6•15 years ago
|
||
Any update on this? It's still not firing and doesn't fire for <colgroup> either. This seems to also be why :hover support is missing for both of these elements.
All major browsers have this issue at the time of writing.
Updated•15 years ago
|
Assignee: saari → nobody
QA Contact: ian → events
Assignee | ||
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
Updated•2 years ago
|
Severity: normal → S3
Updated•7 months ago
|
Priority: -- → P5
You need to log in
before you can comment on or make changes to this bug.
Description
•