[Webkit-unassigned] [Bug 23890] New: Some long-running JS does not get detected as "Slow Script" and stopped.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 10 22:11:12 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=23890

           Summary: Some long-running JS does not get detected as "Slow
                    Script" and stopped.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: JavaScriptCore
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: dimich at chromium.org
                CC: ap at webkit.org, simon.fraser at apple.com


The long-running script should be aborted with a "Slow Script" dialog.

But sometimes, this dialog does not appear and the script is not aborted -
instead the browser just hangs.

Url that hangs:
javascript:function fib(i) { return i < 2 ? 0 : fib(i - 1) + fib(i - 2) + 1;};
fib(60);

Url that popups the right dialog as expected:
javascript:while(true) {};


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list