Title: [214621] trunk/Source/WebCore
Revision
214621
Author
[email protected]
Date
2017-03-30 14:05:58 -0700 (Thu, 30 Mar 2017)

Log Message

[mac-wk1] LayoutTest media/modern-media-controls/airplay-button/airplay-button.html is a flaky timeout
https://bugs.webkit.org/show_bug.cgi?id=168409
<rdar://problem/30799198>

Unreview. Print the backtrace when we suspend scripted animations.

* page/Page.cpp:
(WebCore::Page::suspendScriptedAnimations):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (214620 => 214621)


--- trunk/Source/WebCore/ChangeLog	2017-03-30 20:46:03 UTC (rev 214620)
+++ trunk/Source/WebCore/ChangeLog	2017-03-30 21:05:58 UTC (rev 214621)
@@ -50,6 +50,17 @@
         https://bugs.webkit.org/show_bug.cgi?id=168409
         <rdar://problem/30799198>
 
+        Unreview. Print the backtrace when we suspend scripted animations.
+
+        * page/Page.cpp:
+        (WebCore::Page::suspendScriptedAnimations):
+
+2017-03-30  Antoine Quint  <[email protected]>
+
+        [mac-wk1] LayoutTest media/modern-media-controls/airplay-button/airplay-button.html is a flaky timeout
+        https://bugs.webkit.org/show_bug.cgi?id=168409
+        <rdar://problem/30799198>
+
         Unreview. Pring the backtrace when we suspend ScriptedAnimationController.
 
         * dom/ScriptedAnimationController.cpp:

Modified: trunk/Source/WebCore/page/Page.cpp (214620 => 214621)


--- trunk/Source/WebCore/page/Page.cpp	2017-03-30 20:46:03 UTC (rev 214620)
+++ trunk/Source/WebCore/page/Page.cpp	2017-03-30 21:05:58 UTC (rev 214621)
@@ -1138,6 +1138,8 @@
 
 void Page::suspendScriptedAnimations()
 {
+    if (settings().shouldDispatchRequestAnimationFrameEvents())
+        WTFReportBacktrace();
     m_scriptedAnimationsSuspended = true;
     for (Frame* frame = &mainFrame(); frame; frame = frame->tree().traverseNext()) {
         if (frame->document())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to