Source/WebKit2/ChangeLog

 12017-01-30 Manuel Rego Casasnovas <rego@igalia.com>
 2
 3 [css-grid] Enable CSS Grid Layout by default
 4 https://bugs.webkit.org/show_bug.cgi?id=167578
 5
 6 Reviewed by NOBODY (OOPS!).
 7
 8 Now that Safari 10.1 is shipping CSS Grid Layout it seems safe to enable the feature by default:
 9 https://developer.apple.com/library/prerelease/content/releasenotes/General/WhatsNewInSafari/Articles/Safari_10_1.html
 10
 11 * Shared/WebPreferencesDefinitions.h: Remove Grid Layout from the list of experimental flags and enable it by default.
 12
1132017-01-29 Carlos Garcia Campos <cgarcia@igalia.com>
214
315 [Threaded Compositor] Crash on WebCore::GLContext::version()

Source/WebKit2/Shared/WebPreferencesDefinitions.h

247247 macro(IntersectionObserverEnabled, intersectionObserverEnabled, Bool, bool, false, "Intersection Observer", "Enable Intersection Observer support") \
248248 macro(InteractiveFormValidationEnabled, interactiveFormValidationEnabled, Bool, bool, DEFAULT_HTML_INTERACTIVE_FORM_VALIDATION_ENABLED, "HTML Interactive Form Validation", "HTML interactive form validation") \
249249 macro(ShouldSuppressKeyboardInputDuringProvisionalNavigation, shouldSuppressKeyboardInputDuringProvisionalNavigation, Bool, bool, false, "", "") \
 250 macro(CSSGridLayoutEnabled, cssGridLayoutEnabled, Bool, bool, true, "CSS Grid", "CSS Grid Layout Module support") \
250251 \
251252
252253#define FOR_EACH_WEBKIT_DOUBLE_PREFERENCE(macro) \

312313// wider testing).
313314
314315#define FOR_EACH_WEBKIT_EXPERIMENTAL_FEATURE_PREFERENCE(macro) \
315  macro(CSSGridLayoutEnabled, cssGridLayoutEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "CSS Grid", "CSS Grid Layout Module support") \
316316 macro(SpringTimingFunctionEnabled, springTimingFunctionEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "CSS Spring Animations", "CSS Spring Animation prototype") \
317317 macro(GamepadsEnabled, gamepadsEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Gamepads", "Web Gamepad API support") \
318318 macro(LinkPreloadEnabled, linkPreloadEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Link Preload", "Link preload support") \