Title: [150320] trunk/Source/WebCore
Revision
150320
Author
[email protected]
Date
2013-05-17 20:12:01 -0700 (Fri, 17 May 2013)

Log 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):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (150319 => 150320)


--- trunk/Source/WebCore/ChangeLog	2013-05-18 02:58:53 UTC (rev 150319)
+++ trunk/Source/WebCore/ChangeLog	2013-05-18 03:12:01 UTC (rev 150320)
@@ -1,3 +1,17 @@
+2013-05-17  Timothy Hatcher  <[email protected]>
+
+        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):
+
 2013-05-16  Darin Adler  <[email protected]>
 
         [BlackBerry] Get BlackBerry port off legacy clipboard

Modified: trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp (150319 => 150320)


--- trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp	2013-05-18 02:58:53 UTC (rev 150319)
+++ trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp	2013-05-18 03:12:01 UTC (rev 150320)
@@ -100,6 +100,7 @@
     stopListeningScriptDebugServer();
     scriptDebugServer().clearBreakpoints();
     scriptDebugServer().clearCompiledScripts();
+    scriptDebugServer().continueProgram();
     clear();
 
     if (m_listener)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to