[Webkit-unassigned] [Bug 173625] New: Web Inspector: Should be able to pause and debug a StackOverflow Exception

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 20 16:57:19 PDT 2017


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

            Bug ID: 173625
           Summary: Web Inspector: Should be able to pause and debug a
                    StackOverflow Exception
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: All
                OS: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: joepeck at webkit.org
                CC: inspector-bugzilla-changes at group.apple.com

Summary:
Should be able to pause and debug a StackOverflow Exception

Test:
<script>
function a() { f(); }
function b() { f(); }
function f() { f(); }
if (Math.random() < 0.5)
    a();
else
    b();
</script>

Steps to reproduce:
1. Inspect test page
2. Enable: Pause on All Exceptions
3. Reload the page
  => Should pause on Stack Overflow Exception
  => Should be able to ultimately see the start of the stack (`a` or `b`)
  => Should be able to evaluate in console

-- 
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/20170620/3a49328a/attachment-0001.html>


More information about the webkit-unassigned mailing list