Closed Bug 4026 Opened 26 years ago Closed

Events on textarea does not work properly.

Categories

(Core :: DOM: UI Events & Focus Handling, defect, P2)

x86
Windows 95
defect

Tracking

()

VERIFIED FIXED

People

(Reporter: desale, Assigned: joki)

Details

Events on textarea does not work properly. Providing information to simulate the problem. Product: Seamonkey.[apprunner] Build Date: 03/17/99 Platform: PC [Windows-95] Steps to Reproduce: 1] Please copy the code I'm providing. Save as HTML file. 2] Open this HTML file in apprunner. 3] This file will provide you one text area and one text box. Upper one is called test object. and lower one is called result text box. 4] Try to click on test object. 5] Then try to click on result test box. 6] Again click on test text box. Code: <html> <head> <title>Test Page</title> </head> <SCRIPT LANGUAGE="JavaScript1.1"> function report(text) { var value=document.workform.result.value; var msg= value+ " " +text; document.workform.result.value=msg; } </SCRIPT> <body> <FORM NAME="workform" > <h4>This simple test will list the events which are occuring test object, .</h4><br><br> Test Object:<TEXTAREA WRAP=HARD NAME="username" ROWS=2 COLS=3 onClick="report('Click()');" onfocus="report('Focus()');" onBlur="report('Blur()');" onSelect="report('Select()');" onChange="report('Change()');"></TEXTAREA><br><br> Result Text Box<INPUT TYPE=text NAME="result" SIZE=80> <input type="reset" value="Reset"> <h5>conclusion: onClick of the test object only onclick() and onfocus() events should occur. <br>Where as Blur() event is also occuring. onSelect is not working.</h5> </form> </body> </html> Expected Results: On clicking on test object, result test box should show only two events that are occuring Click() and Focus(). It should not show Blur() event. onSelect() event should work. Actual Results: On clicking on test text box, result text box is showing all three events Click(), Focus(), Blur(). Select() event is not appearing. Description: On click all three events are occuring.
Priority: P3 → P2
Target Milestone: M3
Target M3 per request.
Severity: normal → major
QA Contact: 3847 → 4616
The base event handling for all of these works correctly now. There are still some basic blur/focus issues but none of them are specific to these form types. I'll handle those fixes through other bugs. But the test cases described here are correct.
Status: RESOLVED → VERIFIED
Bug is verified. Working fine.
Component: Event Handling → User events and focus handling
You need to log in before you can comment on or make changes to this bug.