Closed
Bug 319988
Opened 19 years ago
Closed 19 years ago
Firefox hangs executing JavaScript Speed Test 1.0
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
VERIFIED
DUPLICATE
of bug 190147
People
(Reporter: bugmail, Unassigned)
References
()
Details
(Keywords: hang, perf)
Attachments
(1 file)
Attempting to execute any of this site's JavaScript Speed Tests causes Gecko/20051210 Firefox/1.6a1 to hang. It also hangs Firefox 1.5 and Camino 1.0b1.
For now I'll attach a Sampler report. The page and script likely need further triage and reduction, so adding qawanted.
Updated•19 years ago
|
Component: General → JavaScript Engine
Product: Firefox → Core
Updated•19 years ago
|
Assignee: nobody → general
QA Contact: general → general
Comment 2•19 years ago
|
||
Its not a hang in the true sense. The script will finish if you wait long enough... in my case about >300 seconds. IE "hangs" as well but only for 30 seconds or so.
I think the issue here is the appending of text to the textarea value which makes this a dom performance bug. Probably a dupe of bug 190147.
Also reproduced using FF 1.5 on Win XP. Setting All/All and modifying Severity and Keywords per comment 2.
Comment 4•19 years ago
|
||
(In reply to comment #2)
> Its not a hang in the true sense. The script will finish if you wait long
> enough... in my case about >300 seconds. IE "hangs" as well but only for 30
> seconds or so.
hangs for me - it never came back.
at 3 minutes taskmgr indicated "not responding".
at 7 minutes I killed the task.
as mentioned, IE comes aback in less than 30 sec.
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.8) Gecko/20051111 Firefox/1.5 p4 3.2 (similar results for suite trunk build)
Severity: major → critical
Keywords: hang
Comment 5•19 years ago
|
||
So is this a dup of bug 190147? Someone do poor-man's-profiling (ctrl-C or break in a debugger a bunch of times during the hang and see where stack backtraces tend to cluster).
/be
Whiteboard: DUPEME
Comment 6•19 years ago
|
||
*** This bug has been marked as a duplicate of 190147 ***
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
Comment 7•19 years ago
|
||
In case anyone still cares, profiling data shows:
Total hit count: 515441
486137 nsHTMLTextAreaElement::SetValue
28222 nsHTMLTextAreaElement::GetValue
So this is indeed a duplicate of bug 190147. Note that the actual time spent in the JS engine here is at most (515441 - 486137 - 28222) = 1082. Which is about 0.2% of the total.
You need to log in
before you can comment on or make changes to this bug.
Description
•