Title: [219369] trunk/Source/WebKit2
Revision
219369
Author
[email protected]
Date
2017-07-11 15:48:40 -0700 (Tue, 11 Jul 2017)

Log Message

Viewport fit experimental feature should be always on by default
https://bugs.webkit.org/show_bug.cgi?id=174398
<rdar://problem/33248920>

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 (219368 => 219369)


--- trunk/Source/WebKit2/ChangeLog	2017-07-11 22:33:10 UTC (rev 219368)
+++ trunk/Source/WebKit2/ChangeLog	2017-07-11 22:48:40 UTC (rev 219369)
@@ -1,3 +1,16 @@
+2017-07-11  Dean Jackson  <[email protected]>
+
+        Viewport fit experimental feature should be always on by default
+        https://bugs.webkit.org/show_bug.cgi?id=174398
+        <rdar://problem/33248920>
+
+        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-11  Adrian Perez de Castro  <[email protected]>
 
         Fix typo: ContentRuleListStore::nonLegacyDdefaultStore()

Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (219368 => 219369)


--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-07-11 22:33:10 UTC (rev 219368)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2017-07-11 22:48:40 UTC (rev 219369)
@@ -363,7 +363,7 @@
     macro(LinkPreloadEnabled, linkPreloadEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Link Preload", "Link preload support") \
     macro(WebRTCLegacyAPIDisabled, webRTCLegacyAPIDisabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Remove Legacy WebRTC API", "Remove Legacy WebRTC API") \
     macro(SubresourceIntegrityEnabled, subresourceIntegrityEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "SubresourceIntegrity", "Enable SubresourceIntegrity") \
-    macro(ViewportFitEnabled, viewportFitEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Viewport Fit", "Enable viewport-fit viewport parameter") \
+    macro(ViewportFitEnabled, viewportFitEnabled, Bool, bool, true, "Viewport Fit", "Enable viewport-fit viewport parameter") \
     macro(WebAnimationsEnabled, webAnimationsEnabled, Bool, bool, false, "Web Animations", "Web Animations prototype") \
     macro(WebGL2Enabled, webGL2Enabled, Bool, bool, false, "WebGL 2.0", "WebGL 2 prototype") \
     macro(WebGPUEnabled, webGPUEnabled, Bool, bool, false, "WebGPU", "WebGPU prototype") \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to