[Webkit-unassigned] [Bug 139548] fast/workers/worker-constructor.html frequently crashes

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 11 13:33:01 PST 2014


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

--- Comment #2 from Michael Saboff <msaboff at apple.com> ---
The test itself creates the recursion.  The bug appears to be that we crash sometimes when handling the stack overflow exception.

function testRecursiveWorkerCreation()
{
    try {
        var foo = {toString:function(){new Worker(foo)}}
        new Worker(foo);
        log("FAIL: no exception when trying to create workers recursively");
    } catch (ex) {
        log("PASS: trying to create workers recursively resulted in an exception (" + ex + ")");
    }
    runNextTest();
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20141211/28770220/attachment-0002.html>


More information about the webkit-unassigned mailing list