Closed
Bug 1336833
Opened 9 years ago
Closed 3 years ago
Printing a lot of content hangs Firefox unusable and unnavigable
Categories
(DevTools :: Console, defect, P2)
Tracking
(Not tracked)
RESOLVED
DUPLICATE
of bug 1753177
People
(Reporter: jujjyl, Unassigned)
References
(Blocks 1 open bug)
Details
Consider the following code:
> <html><script>
> function print() {
> for(var i = 0; i < 1000; ++i) console.error('I print, therefore I am! ' + i);
> requestAnimationFrame(print);
> }
> requestAnimationFrame(print);
> </script></html>
This page prints so much that the browser becomes unresponsive. The slow script dialog/banner does not come up on this, and it is not possible to navigate away from the page or close the browser from X in the corner. User has to kill the browser from task manager to resume.
Comment 1•9 years ago
|
||
We have a number of blockers on Bug 1308216 to improve this situation in the new frontend. Will keep this open until it's better.
Updated•8 years ago
|
Product: Firefox → DevTools
Updated•3 years ago
|
Severity: normal → S3
Comment 2•3 years ago
|
||
This seems to be okay now, probably thanks to Bug 1753177
You need to log in
before you can comment on or make changes to this bug.
Description
•