Changeset 150320 in webkit


Ignore:
Timestamp:
May 17, 2013 8:12:01 PM (11 years ago)
Author:
timothy@apple.com
Message:

Force the script debug server to continue when disabling the debugger.

There might be some cases where the debugger will stay in the nested run loop
which cause weird issues.

Speculative fix for: https://webkit.org/b/111438

Reviewed by Joseph Pecoraro.

  • inspector/InspectorDebuggerAgent.cpp:

(WebCore::InspectorDebuggerAgent::disable):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150319 r150320  
     12013-05-17  Timothy Hatcher  <timothy@apple.com>
     2
     3        Force the script debug server to continue when disabling the debugger.
     4
     5        There might be some cases where the debugger will stay in the nested run loop
     6        which cause weird issues.
     7
     8        Speculative fix for: https://webkit.org/b/111438
     9
     10        Reviewed by Joseph Pecoraro.
     11
     12        * inspector/InspectorDebuggerAgent.cpp:
     13        (WebCore::InspectorDebuggerAgent::disable):
     14
    1152013-05-16  Darin Adler  <darin@apple.com>
    216
  • trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp

    r148921 r150320  
    101101    scriptDebugServer().clearBreakpoints();
    102102    scriptDebugServer().clearCompiledScripts();
     103    scriptDebugServer().continueProgram();
    103104    clear();
    104105
Note: See TracChangeset for help on using the changeset viewer.