Title: [218709] trunk/Source/WebCore
Revision
218709
Author
[email protected]
Date
2017-06-22 11:39:53 -0700 (Thu, 22 Jun 2017)

Log Message

Follow-up to r218662. Only log backtraces for DumpRenderTree.

Rubber-stamped by Antoine Quint.

* dom/ScriptedAnimationController.cpp:
(WebCore::ScriptedAnimationController::logSuspendCount):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (218708 => 218709)


--- trunk/Source/WebCore/ChangeLog	2017-06-22 18:35:17 UTC (rev 218708)
+++ trunk/Source/WebCore/ChangeLog	2017-06-22 18:39:53 UTC (rev 218709)
@@ -1,3 +1,12 @@
+2017-06-22  Joseph Pecoraro  <[email protected]>
+
+        Follow-up to r218662. Only log backtraces for DumpRenderTree.
+
+        Rubber-stamped by Antoine Quint.
+
+        * dom/ScriptedAnimationController.cpp:
+        (WebCore::ScriptedAnimationController::logSuspendCount):
+
 2017-06-22  Charlie Turner  <[email protected]>
 
         [GTK] Spreaker live shows won't play

Modified: trunk/Source/WebCore/dom/ScriptedAnimationController.cpp (218708 => 218709)


--- trunk/Source/WebCore/dom/ScriptedAnimationController.cpp	2017-06-22 18:35:17 UTC (rev 218708)
+++ trunk/Source/WebCore/dom/ScriptedAnimationController.cpp	2017-06-22 18:39:53 UTC (rev 218709)
@@ -95,7 +95,7 @@
 void ScriptedAnimationController::logSuspendCount()
 {
 #if PLATFORM(MAC)
-    if (!m_document || !m_document->frame() || MacApplication::isDumpRenderTree())
+    if (!MacApplication::isDumpRenderTree())
         return;
 
     WTFLogAlways("\nScriptedAnimationController::m_suspendCount = %d", m_suspendCount);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to