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)

x86
Windows 95
defect

Tracking

()

VERIFIED FIXED

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.
Assignee: vidur → joki
Passing it on to joki, though it may be Chris Karnaze's problem.
Assignee: joki → karnaze
Status: NEW → ASSIGNED
Assignee: karnaze → pollmann
Status: ASSIGNED → NEW
Setting all current Open/Normal to M4.
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: 4015 → 3847
QA contact re-assigned according to the product areas we're currently working on.
Assignee: pollmann → evaughan
Status: ASSIGNED → NEW
A <BUTTON> bug
Target Milestone: M4 → M5
moving to m5
Priority: P2 → P3
Target Milestone: M5 → M6
this sounds less urgent, moving to p3 for m6
Whiteboard: been sliding m4->6, move to m7?
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
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>
Status: RESOLVED → VERIFIED
verified fixt. build 1999-05-24-09-M6
Flags: in-testsuite?
Component: DOM → DOM: Core & HTML
You need to log in before you can comment on or make changes to this bug.