Title: [251237] trunk/Source
Revision
251237
Author
commit-qu...@webkit.org
Date
2019-10-17 09:24:49 -0700 (Thu, 17 Oct 2019)

Log Message

[Web Animations] Enable the Web Animations _javascript_ API by default
https://bugs.webkit.org/show_bug.cgi?id=203075

Patch by Antoine Quint <grao...@apple.com> on 2019-10-17
Reviewed by Antti Koivisto.

Source/WebCore:

* page/RuntimeEnabledFeatures.h:

Source/WebKit:

* Shared/WebPreferences.yaml:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (251236 => 251237)


--- trunk/Source/WebCore/ChangeLog	2019-10-17 16:04:54 UTC (rev 251236)
+++ trunk/Source/WebCore/ChangeLog	2019-10-17 16:24:49 UTC (rev 251237)
@@ -1,3 +1,12 @@
+2019-10-17  Antoine Quint  <grao...@apple.com>
+
+        [Web Animations] Enable the Web Animations _javascript_ API by default
+        https://bugs.webkit.org/show_bug.cgi?id=203075
+
+        Reviewed by Antti Koivisto.
+
+        * page/RuntimeEnabledFeatures.h:
+
 2019-10-17  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Unreviewed, fix watchOS and tvOS builds after r251224

Modified: trunk/Source/WebCore/page/RuntimeEnabledFeatures.h (251236 => 251237)


--- trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2019-10-17 16:04:54 UTC (rev 251236)
+++ trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2019-10-17 16:24:49 UTC (rev 251237)
@@ -405,7 +405,7 @@
     bool m_isCustomPasteboardDataEnabled { false };
     bool m_isWebShareEnabled { false };
     bool m_inputEventsEnabled { true };
-    bool m_areWebAnimationsEnabled { false };
+    bool m_areWebAnimationsEnabled { true };
     bool m_isWebAnimationsCSSIntegrationEnabled { false };
     bool m_isImageBitmapOffscreenCanvasEnabled { true };
     bool m_isCacheAPIEnabled { false };

Modified: trunk/Source/WebKit/ChangeLog (251236 => 251237)


--- trunk/Source/WebKit/ChangeLog	2019-10-17 16:04:54 UTC (rev 251236)
+++ trunk/Source/WebKit/ChangeLog	2019-10-17 16:24:49 UTC (rev 251237)
@@ -1,3 +1,12 @@
+2019-10-17  Antoine Quint  <grao...@apple.com>
+
+        [Web Animations] Enable the Web Animations _javascript_ API by default
+        https://bugs.webkit.org/show_bug.cgi?id=203075
+
+        Reviewed by Antti Koivisto.
+
+        * Shared/WebPreferences.yaml:
+
 2019-10-17  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
         [GTK][WPE] File and Directory Entries API is not enabled

Modified: trunk/Source/WebKit/Shared/WebPreferences.yaml (251236 => 251237)


--- trunk/Source/WebKit/Shared/WebPreferences.yaml	2019-10-17 16:04:54 UTC (rev 251236)
+++ trunk/Source/WebKit/Shared/WebPreferences.yaml	2019-10-17 16:24:49 UTC (rev 251237)
@@ -1306,7 +1306,7 @@
 
 WebAnimationsEnabled:
   type: bool
-  defaultValue: DEFAULT_EXPERIMENTAL_FEATURES_ENABLED
+  defaultValue: true
   humanReadableName: "Web Animations"
   humanReadableDescription: "Web Animations prototype"
   category: experimental
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to