Modified: releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog (207967 => 207968)
--- releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog 2016-10-27 09:26:38 UTC (rev 207967)
+++ releases/WebKitGTK/webkit-2.14/Source/WebKit2/ChangeLog 2016-10-27 09:34:40 UTC (rev 207968)
@@ -1,3 +1,17 @@
+2016-10-17 Manuel Rego Casasnovas <[email protected]>
+
+ [css-grid] Disable CSS Grid Layout runtime flag by default
+ https://bugs.webkit.org/show_bug.cgi?id=163432
+
+ Reviewed by Darin Adler.
+
+ It was enabled in r201042, but now Safari Technology Preview
+ has a UI to switch runtime flags so it doesn't need to be enabled
+ by default anymore.
+
+ * Shared/WebPreferencesDefinitions.h: Disable grid layout runtime flag
+ by default.
+
2016-10-16 Carlos Garcia Campos <[email protected]>
[GTK] Default WebKitWebsiteDataManager is always leaked in WebKitWebContext
Modified: releases/WebKitGTK/webkit-2.14/Source/WebKit2/Shared/WebPreferencesDefinitions.h (207967 => 207968)
--- releases/WebKitGTK/webkit-2.14/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-10-27 09:26:38 UTC (rev 207967)
+++ releases/WebKitGTK/webkit-2.14/Source/WebKit2/Shared/WebPreferencesDefinitions.h 2016-10-27 09:34:40 UTC (rev 207968)
@@ -286,7 +286,7 @@
// - They should be false by default, although they are currently set to true while we develop client UI.
#define FOR_EACH_WEBKIT_EXPERIMENTAL_FEATURE_PREFERENCE(macro) \
- macro(CSSGridLayoutEnabled, cssGridLayoutEnabled, Bool, bool, true, "CSS Grid", "CSS Grid Layout Module support") \
+ macro(CSSGridLayoutEnabled, cssGridLayoutEnabled, Bool, bool, false, "CSS Grid", "CSS Grid Layout Module support") \
macro(CustomElementsEnabled, customElementsEnabled, Bool, bool, false, "Custom Elements", "HTML Custom Elements prototype") \
macro(GamepadsEnabled, gamepadsEnabled, Bool, bool, false, "Gamepads", "Web Gamepad API support") \
macro(SpringTimingFunctionEnabled, springTimingFunctionEnabled, Bool, bool, true, "CSS Spring Animations", "CSS Spring Animation prototype") \