[Webkit-unassigned] [Bug 29797] [V8] Runaway JS recursion crashes Chromium workers on OS X

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Sep 28 11:19:45 PDT 2009


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


Dimitri Glazkov (Google) <dglazkov at chromium.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #40218|review?                     |review-
               Flag|                            |




--- Comment #3 from Dimitri Glazkov (Google) <dglazkov at chromium.org>  2009-09-28 11:19:45 PDT ---
(From update of attachment 40218)
> +        Reviewed by NOBODY (OOPS!).
> +
> +        Sets a stack limit for V8 workers.
Need a better description of this test change and a bug URL.


>  
> +function h() {
> +    try {
> +        g();
> +    } catch (ex) {
> +        postMessage(ex);
> +    }
> +}
> +
>  try {
>      f();
>  } catch (ex) {
>      try {
>          g();
>      } catch (ex) {
> -        postMessage(ex);
> +        setTimeout(h, 0);
>      }

perhaps this could be a new test?

> +        Sets a stack limit for V8 workers.

Bug url is needed here. Also, make sure to prefix V8-related bug titles with
[V8].

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



More information about the webkit-unassigned mailing list