Title: [219318] trunk/Source/WebKit2
Revision
219318
Author
d...@apple.com
Date
2017-07-10 19:39:16 -0700 (Mon, 10 Jul 2017)

Log Message

const() experimental feature should always be on by default
https://bugs.webkit.org/show_bug.cgi?id=174341
<rdar://problem/33228603>

Reviewed by Simon Fraser.

Even though this is experimental, it should be enabled by default, and
not follow the value of DEFAULT_EXPERIMENTAL_FEATURES_ENABLED.

* Shared/WebPreferencesDefinitions.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (219317 => 219318)


--- trunk/Source/WebKit2/ChangeLog	2017-07-11 00:29:36 UTC (rev 219317)
+++ trunk/Source/WebKit2/ChangeLog	2017-07-11 02:39:16 UTC (rev 219318)
@@ -1,3 +1,16 @@
+2017-07-10  Dean Jackson  <d...@apple.com>
+
+        const() experimental feature should always be on by default
+        https://bugs.webkit.org/show_bug.cgi?id=174341
+        <rdar://problem/33228603>
+
+        Reviewed by Simon Fraser.
+
+        Even though this is experimental, it should be enabled by default, and
+        not follow the value of DEFAULT_EXPERIMENTAL_FEATURES_ENABLED.
+
+        * Shared/WebPreferencesDefinitions.h:
+
 2017-07-10  Chris Dumez  <cdu...@apple.com>
 
         [iOS] _didCommitLayerTree should avoid calling [scrollView setZoomScale] unnecessarily

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (219317 => 219318)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-07-11 00:29:36 UTC (rev 219317)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-07-11 02:39:16 UTC (rev 219318)
@@ -356,7 +356,7 @@
 //   wider testing).
 
 #define FOR_EACH_WEBKIT_EXPERIMENTAL_FEATURE_PREFERENCE(macro) \
-    macro(ConstantPropertiesEnabled, constantPropertiesEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Constant Properties", "Enable CSS constant() properties") \
+    macro(ConstantPropertiesEnabled, constantPropertiesEnabled, Bool, bool, true, "Constant Properties", "Enable CSS constant() properties") \
     macro(DisplayContentsEnabled, displayContentsEnabled, Bool, bool, false, "CSS display: contents", "Enable CSS display: contents support") \
     macro(SpringTimingFunctionEnabled, springTimingFunctionEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "CSS Spring Animations", "CSS Spring Animation prototype") \
     macro(IsSecureContextAttributeEnabled, isSecureContextAttributeEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "isSecureContext attribute", "Enable isSecureContext attribute") \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to