Changeset 219318 in webkit


Ignore:
Timestamp:
Jul 10, 2017 7:39:16 PM (7 years ago)
Author:
dino@apple.com
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:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r219314 r219318  
     12017-07-10  Dean Jackson  <dino@apple.com>
     2
     3        const() experimental feature should always be on by default
     4        https://bugs.webkit.org/show_bug.cgi?id=174341
     5        <rdar://problem/33228603>
     6
     7        Reviewed by Simon Fraser.
     8
     9        Even though this is experimental, it should be enabled by default, and
     10        not follow the value of DEFAULT_EXPERIMENTAL_FEATURES_ENABLED.
     11
     12        * Shared/WebPreferencesDefinitions.h:
     13
    1142017-07-10  Chris Dumez  <cdumez@apple.com>
    215
  • trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h

    r219012 r219318  
    357357
    358358#define FOR_EACH_WEBKIT_EXPERIMENTAL_FEATURE_PREFERENCE(macro) \
    359     macro(ConstantPropertiesEnabled, constantPropertiesEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "Constant Properties", "Enable CSS constant() properties") \
     359    macro(ConstantPropertiesEnabled, constantPropertiesEnabled, Bool, bool, true, "Constant Properties", "Enable CSS constant() properties") \
    360360    macro(DisplayContentsEnabled, displayContentsEnabled, Bool, bool, false, "CSS display: contents", "Enable CSS display: contents support") \
    361361    macro(SpringTimingFunctionEnabled, springTimingFunctionEnabled, Bool, bool, DEFAULT_EXPERIMENTAL_FEATURES_ENABLED, "CSS Spring Animations", "CSS Spring Animation prototype") \
Note: See TracChangeset for help on using the changeset viewer.