Title: [252945] trunk/Source
Revision
252945
Author
grao...@webkit.org
Date
2019-11-29 10:15:03 -0800 (Fri, 29 Nov 2019)

Log Message

[Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
https://bugs.webkit.org/show_bug.cgi?id=204650
<rdar://problem/45562752>

Reviewed by Dean Jackson.

Source/WebCore:

* page/RuntimeEnabledFeatures.h:

Source/WebKit:

* Shared/WebPreferences.yaml:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (252944 => 252945)


--- trunk/Source/WebCore/ChangeLog	2019-11-29 18:11:28 UTC (rev 252944)
+++ trunk/Source/WebCore/ChangeLog	2019-11-29 18:15:03 UTC (rev 252945)
@@ -1,3 +1,13 @@
+2019-11-27  Antoine Quint  <grao...@apple.com>
+
+        [Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
+        https://bugs.webkit.org/show_bug.cgi?id=204650
+        <rdar://problem/45562752>
+
+        Reviewed by Dean Jackson.
+
+        * page/RuntimeEnabledFeatures.h:
+
 2019-11-29  Antoine Quint  <grao...@apple.com>
 
         [Web Animations] Forward-filling animations should not schedule updates while filling

Modified: trunk/Source/WebCore/page/RuntimeEnabledFeatures.h (252944 => 252945)


--- trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2019-11-29 18:11:28 UTC (rev 252944)
+++ trunk/Source/WebCore/page/RuntimeEnabledFeatures.h	2019-11-29 18:15:03 UTC (rev 252945)
@@ -414,7 +414,7 @@
     bool m_isWebShareEnabled { false };
     bool m_inputEventsEnabled { true };
     bool m_areWebAnimationsEnabled { true };
-    bool m_isWebAnimationsCSSIntegrationEnabled { false };
+    bool m_isWebAnimationsCSSIntegrationEnabled { true };
     bool m_isImageBitmapEnabled { true };
 #if ENABLE(OFFSCREEN_CANVAS)
     bool m_isOffscreenCanvasEnabled { false };

Modified: trunk/Source/WebKit/ChangeLog (252944 => 252945)


--- trunk/Source/WebKit/ChangeLog	2019-11-29 18:11:28 UTC (rev 252944)
+++ trunk/Source/WebKit/ChangeLog	2019-11-29 18:15:03 UTC (rev 252945)
@@ -1,3 +1,13 @@
+2019-11-27  Antoine Quint  <grao...@apple.com>
+
+        [Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
+        https://bugs.webkit.org/show_bug.cgi?id=204650
+        <rdar://problem/45562752>
+
+        Reviewed by Dean Jackson.
+
+        * Shared/WebPreferences.yaml:
+
 2019-11-28  Fujii Hironori  <hironori.fu...@sony.com>
 
         Remove ENABLE_KEYBOARD_CODE_ATTRIBUTE and ENABLE_KEYBOARD_KEY_ATTRIBUTE macros

Modified: trunk/Source/WebKit/Shared/WebPreferences.yaml (252944 => 252945)


--- trunk/Source/WebKit/Shared/WebPreferences.yaml	2019-11-29 18:11:28 UTC (rev 252944)
+++ trunk/Source/WebKit/Shared/WebPreferences.yaml	2019-11-29 18:15:03 UTC (rev 252945)
@@ -1319,7 +1319,7 @@
 
 WebAnimationsCSSIntegrationEnabled:
   type: bool
-  defaultValue: false
+  defaultValue: true
   humanReadableName: "CSS Animations via Web Animations"
   humanReadableDescription: "Expose CSS Animations and CSS Transitions through getAnimations()"
   category: experimental
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to