Title: [215177] trunk/Source/WebKit2
Revision
215177
Author
carlo...@webkit.org
Date
2017-04-10 04:04:34 -0700 (Mon, 10 Apr 2017)

Log Message

[GTK] Enable DOM timer throttling and CSS animations suspension
https://bugs.webkit.org/show_bug.cgi?id=170669

Reviewed by Žan Doberšek.

* Shared/WebPreferencesDefinitions.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (215176 => 215177)


--- trunk/Source/WebKit2/ChangeLog	2017-04-10 10:16:26 UTC (rev 215176)
+++ trunk/Source/WebKit2/ChangeLog	2017-04-10 11:04:34 UTC (rev 215177)
@@ -1,3 +1,12 @@
+2017-04-10  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] Enable DOM timer throttling and CSS animations suspension
+        https://bugs.webkit.org/show_bug.cgi?id=170669
+
+        Reviewed by Žan Doberšek.
+
+        * Shared/WebPreferencesDefinitions.h:
+
 2017-04-10  Chris Dumez  <cdu...@apple.com>
 
         Drop Timer::startOneShot() overload taking a double

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (215176 => 215177)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-04-10 10:16:26 UTC (rev 215176)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-04-10 11:04:34 UTC (rev 215177)
@@ -37,13 +37,17 @@
 #define DEFAULT_WEBKIT_SCROLL_ANIMATOR_ENABLED false
 #endif
 
-#if PLATFORM(COCOA)
+#if PLATFORM(COCOA) || PLATFORM(GTK)
 #define DEFAULT_HIDDEN_PAGE_DOM_TIMER_THROTTLING_ENABLED true
 #define DEFAULT_HIDDEN_PAGE_CSS_ANIMATION_SUSPENSION_ENABLED true
-#define DEFAULT_PDFPLUGIN_ENABLED true
 #else
 #define DEFAULT_HIDDEN_PAGE_DOM_TIMER_THROTTLING_ENABLED false
 #define DEFAULT_HIDDEN_PAGE_CSS_ANIMATION_SUSPENSION_ENABLED false
+#endif
+
+#if PLATFORM(COCOA)
+#define DEFAULT_PDFPLUGIN_ENABLED true
+#else
 #define DEFAULT_PDFPLUGIN_ENABLED false
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to