Changeset 183720 in webkit


Ignore:
Timestamp:
May 2, 2015 12:19:07 PM (9 years ago)
Author:
ap@apple.com
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):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r183717 r183720  
     12015-05-02  Alexey Proskuryakov  <ap@apple.com>
     2
     3        fast/frames/flattening/iframe-flattening-resize-event-count.html times out on Yosemite WK2
     4        https://bugs.webkit.org/show_bug.cgi?id=144155
     5
     6        Unreviewed, will roll out soon.
     7
     8        Added some temporary logging to better see if alignment is indeed the culprit.
     9
     10        * page/Settings.cpp: (WebCore::Settings::setDOMTimerAlignmentInterval):
     11
    1122015-05-02  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
    213
  • trunk/Source/WebCore/page/Settings.cpp

    r183428 r183720  
    468468void Settings::setDOMTimerAlignmentInterval(double alignmentInterval)
    469469{
     470#ifndef NDEBUG
     471    // Temporary logging for <https://bugs.webkit.org/show_bug.cgi?id=144155>.
     472    WTFLogAlways("Settings %p setDOMTimerAlignmentInterval %g\n", this, alignmentInterval);
     473#endif
    470474    m_domTimerAlignmentInterval = alignmentInterval;
    471475}
Note: See TracChangeset for help on using the changeset viewer.