Closed
Bug 4070
Opened 26 years ago
Closed 26 years ago
onResize event does not work.
Categories
(Core :: DOM: UI Events & Focus Handling, defect, P2)
Tracking
()
M3
People
(Reporter: desale, Assigned: joki)
Details
onResize event does not work.
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] After loading the page, try to resize the window.
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 onResize="report('Resize()');">
<FORM NAME="workform" >
<h4>This simple test whether onResize event works or not.</h4><br><br>
Result Text Box:<INPUT TYPE=text name="result" size=60><br><br>
<h5>conclusion: Since after resizing the window result text box does not show
any <br>
sign that means onResize event does not work. </h5>
</form>
</body>
</html>
Expected Results: After resizing window, result text box should print event
Resize().
Actual Results: Result text box does not show anything.
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
|
QA Contact: 3847 → 4616
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Updated•26 years ago
|
Status: RESOLVED → CLOSED
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
•