Closed
Bug 180391
Opened 23 years ago
Closed 22 years ago
Hang when the javascript command window.print(); is issued - random times
Categories
(Core :: Printing: Output, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: alex00james, Assigned: rods)
Details
(Keywords: hang)
Attachments
(1 file)
|
741 bytes,
text/html
|
Details |
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.0.3705)
Build Identifier: Mozilla 1.1 (final release) MAC 8.6 G3 PowerBook
When running a javascript 'print' command, the browser will lockup (seen only
on the mac platform - verified on multiple different machines).
The following code is the javascript command:
<SCRIPT>
function pageFunction()
{
if (document.printRequest.control_print.value == "1")
window.print();
if (document.printRequest.control_nextl.value != "")
startClock();
}
var x = 5;
var y = 1;
function startClock()
{
x = x-y;
setTimeout("startClock()", 1000);
if (x == 0)
{
location = document.printRequest.control_nextl.value;
return;
}
}
</SCRIPT>
Reproducible: Sometimes
Steps to Reproduce:
This page is gone to via a forwarding, and the script above runs. Sometimes
mozilla will lockup (on the mac 8.6), and if it does, a number of sequential
crashes will follow.
Actual Results:
Mozilla lockup - hard crash (of Mozilla)
Expected Results:
The page will print the expected window, then will be forwarded to a new page 5
seconds later.
I'll try and get the stack trace on monday
| Reporter | ||
Updated•23 years ago
|
OS: other → Mac System 8.6
Alex, it sounds like you're describing a hang, rather than a crash.
Comment 3•22 years ago
|
||
Mac Classic is no longer supported.
-> WONTFIX
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•