Closed
Bug 4009
Opened 26 years ago
Closed
Events on password field does not work properly.
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P2)
Tracking
()
VERIFIED
FIXED
M3
People
(Reporter: desale, Assigned: joki)
Details
Events on password 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=password 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.
Reporter | ||
Updated•26 years ago
|
Priority: P3 → P2
Target Milestone: M3
Reporter | ||
Comment 1•26 years ago
|
||
Target M3 per request.
Reporter | ||
Updated•26 years ago
|
Severity: normal → major
Reporter | ||
Updated•26 years ago
|
QA Contact: 3847 → 4616
Assignee | ||
Comment 2•26 years ago
|
||
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.
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Reporter | ||
Comment 3•26 years ago
|
||
Bug is verified. Working fine.
Updated•6 years ago
|
Component: Event Handling → User events and focus handling
You need to log in
before you can comment on or make changes to this bug.
Description
•