Title: [183720] trunk/Source/WebCore
Revision
183720
Author
[email protected]
Date
2015-05-02 12:19:07 -0700 (Sat, 02 May 2015)

Log Message

fast/frames/flattening/iframe-flattening-resize-event-count.html times out on Yosemite WK2
https://bugs.webkit.org/show_bug.cgi?id=144155

Unreviewed, will roll out soon.

Added some temporary logging to better see if alignment is indeed the culprit.

* page/Settings.cpp: (WebCore::Settings::setDOMTimerAlignmentInterval):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (183719 => 183720)


--- trunk/Source/WebCore/ChangeLog	2015-05-02 18:36:24 UTC (rev 183719)
+++ trunk/Source/WebCore/ChangeLog	2015-05-02 19:19:07 UTC (rev 183720)
@@ -1,3 +1,14 @@
+2015-05-02  Alexey Proskuryakov  <[email protected]>
+
+        fast/frames/flattening/iframe-flattening-resize-event-count.html times out on Yosemite WK2
+        https://bugs.webkit.org/show_bug.cgi?id=144155
+
+        Unreviewed, will roll out soon.
+
+        Added some temporary logging to better see if alignment is indeed the culprit.
+
+        * page/Settings.cpp: (WebCore::Settings::setDOMTimerAlignmentInterval):
+
 2015-05-02  Gyuyoung Kim  <[email protected]>
 
         Use Ref instead of PassRefPtr in WebCore/svg 

Modified: trunk/Source/WebCore/page/Settings.cpp (183719 => 183720)


--- trunk/Source/WebCore/page/Settings.cpp	2015-05-02 18:36:24 UTC (rev 183719)
+++ trunk/Source/WebCore/page/Settings.cpp	2015-05-02 19:19:07 UTC (rev 183720)
@@ -467,6 +467,10 @@
 
 void Settings::setDOMTimerAlignmentInterval(double alignmentInterval)
 {
+#ifndef NDEBUG
+    // Temporary logging for <https://bugs.webkit.org/show_bug.cgi?id=144155>.
+    WTFLogAlways("Settings %p setDOMTimerAlignmentInterval %g\n", this, alignmentInterval);
+#endif
     m_domTimerAlignmentInterval = alignmentInterval;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to