[Webkit-unassigned] [Bug 121010] New: "Stop on uncaught exceptions" catches all exceptions

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Sep 8 12:57:19 PDT 2013


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

           Summary: "Stop on uncaught exceptions" catches all exceptions
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: paul+bugs at paulmillr.com
                CC: timothy at apple.com, joepeck at webkit.org,
                    webkit-bug-importer at group.apple.com, graouts at apple.com


Enable “Breakpoints on all uncaught exceptions”.

Works:

    try {throw new Error()} catch(e) {}

Does not work:

  function f() {throw new Error();};
  try {f()} catch(e) {}

Basically there is a simple check for `try` in current context.

This is ultra-annoying bug and happens on all sites all the time (for example, with jQuery).

-- 
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