Title: [183418] trunk/Tools
Revision
183418
Author
[email protected]
Date
2015-04-27 13:34:33 -0700 (Mon, 27 Apr 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

Reviewed by Tim Horton.

* WebKitTestRunner/TestController.cpp: (WTR::TestController::resetPreferencesToConsistentValues):
Disable App Nap. I don't have positive evidence that it's the culprit, but it could be,
and we clearly don't want App Nap while testing.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (183417 => 183418)


--- trunk/Tools/ChangeLog	2015-04-27 20:33:15 UTC (rev 183417)
+++ trunk/Tools/ChangeLog	2015-04-27 20:34:33 UTC (rev 183418)
@@ -1,3 +1,14 @@
+2015-04-27  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
+
+        Reviewed by Tim Horton.
+
+        * WebKitTestRunner/TestController.cpp: (WTR::TestController::resetPreferencesToConsistentValues):
+        Disable App Nap. I don't have positive evidence that it's the culprit, but it could be,
+        and we clearly don't want App Nap while testing.
+
 2015-04-22  Martin Robinson  <[email protected]>
 
         [CMake] Autogenerate cmakeconfig.h.cmake

Modified: trunk/Tools/WebKitTestRunner/TestController.cpp (183417 => 183418)


--- trunk/Tools/WebKitTestRunner/TestController.cpp	2015-04-27 20:33:15 UTC (rev 183417)
+++ trunk/Tools/WebKitTestRunner/TestController.cpp	2015-04-27 20:34:33 UTC (rev 183418)
@@ -558,6 +558,7 @@
     // Reset preferences
     WKPreferencesRef preferences = WKPageGroupGetPreferences(m_pageGroup.get());
     WKPreferencesResetTestRunnerOverrides(preferences);
+    WKPreferencesSetPageVisibilityBasedProcessSuppressionEnabled(preferences, false);
     WKPreferencesSetOfflineWebApplicationCacheEnabled(preferences, true);
     WKPreferencesSetFontSmoothingLevel(preferences, kWKFontSmoothingLevelNoSubpixelAntiAliasing);
     WKPreferencesSetAntialiasedFontDilationEnabled(preferences, false);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to