Closed
Bug 1242
Opened 26 years ago
Closed 26 years ago
<BUTTON> elements do not respond to certain events
Categories
(Core :: DOM: Core & HTML, defect, P3)
Tracking
()
VERIFIED
FIXED
M6
People
(Reporter: german, Assigned: eric)
Details
(Whiteboard: been sliding m4->6, move to m7?)
I tested this with onmouseover and onmouseout (don't know about others), and a
simple alert("blah..") script, and I cannot see any alert message in the console
window. This works with other elements like IMGs. So I assume the button object
does not respond to events. This is the same whether I
assign the scripts to the events inline inside the <BUTTON> tag or from another
javascript.
Updated•26 years ago
|
Assignee: vidur → joki
Comment 1•26 years ago
|
||
Passing it on to joki, though it may be Chris Karnaze's problem.
Updated•26 years ago
|
Assignee: joki → karnaze
Updated•26 years ago
|
Status: NEW → ASSIGNED
Updated•26 years ago
|
Assignee: karnaze → pollmann
Status: ASSIGNED → NEW
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
QA contact re-assigned according to the product areas we're currently working
on.
Updated•26 years ago
|
Assignee: pollmann → evaughan
Status: ASSIGNED → NEW
Comment 5•26 years ago
|
||
A <BUTTON> bug
Updated•26 years ago
|
Target Milestone: M4 → M5
Comment 6•26 years ago
|
||
moving to m5
Updated•26 years ago
|
Priority: P2 → P3
Target Milestone: M5 → M6
Comment 7•26 years ago
|
||
this sounds less urgent, moving to p3 for m6
Updated•26 years ago
|
Whiteboard: been sliding m4->6, move to m7?
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 8•26 years ago
|
||
Tested with the following html file. And onmouseover and onmouseout seem to be
working fine
<html>
<head>
<script>
function show() {
document.getElementById("div1").setAttribute("value","visible");
}
function hide() {
document.getElementById("div1").setAttribute("value","hidden");
}
</script>
<style>
div[id="div1"][value="hidden"] {
background-color: blue;
}
div[id="div1"][value="visible"] {
background-color: red;
}
</style>
</head>
<body>
<div id="div1" value="hidden">
this is text
<form>
<input type="submit">
</form>
<iframe src="http://www.yahoo.com">
</div>
<input type="button" onmouseover="show(this)" onmouseout="hide(this)"
value="show"/>
</body>
</html>
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 9•26 years ago
|
||
verified fixt. build 1999-05-24-09-M6
Updated•18 years ago
|
Flags: in-testsuite?
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•