Closed Bug 4005 Opened 26 years ago Closed 25 years ago

Events on text field 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 text field 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 two text boxes. Upper one is called test text box
and lower one is called result text box.
4] Try to click on test text box.
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 in result text
box.</h4><br><br>

Test Text Box:<INPUT TYPE=text NAME="username" SIZE=15
onClick="report('Click()');" onfocus="report('Focus()');"
onBlur="report('Blur()');" onSelect="report('Select()');"
onChange="report('Change()');"><br><br>
Result Text Box<INPUT TYPE=text NAME="result" SIZE=80>
<input type="reset" value="Reset">
<h5>conclusion: onClick of the test text box 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 text box, 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.
Severity: normal → major
Priority: P3 → P2
Summary: Events on text field does not work properly. → Events on text field does not work properly.
Target Milestone: M3
M3, as requested.
QA Contact: 3847 → 4616
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
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
I verified this bug, and everything seems working now. Marking as Verified.
Component: Event Handling → User events and focus handling
You need to log in before you can comment on or make changes to this bug.