Changeset 237421 in webkit


Ignore:
Timestamp:
Oct 25, 2018 12:17:04 PM (5 years ago)
Author:
graouts@webkit.org
Message:

[Web Animations] Turn Web Animations CSS Integration off by default
https://bugs.webkit.org/show_bug.cgi?id=190901

Reviewed by Dean Jackson.

Source/WebCore:

  • page/RuntimeEnabledFeatures.h:

Source/WebKit:

  • Shared/WebPreferences.yaml:

Source/WebKitLegacy/mac:

  • WebView/WebPreferences.mm:

(+[WebPreferences initialize]):

Source/WebKitLegacy/win:

  • WebPreferences.cpp:

(WebPreferences::initializeDefaultSettings):

Location:
trunk/Source
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r237418 r237421  
     12018-10-25  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Turn Web Animations CSS Integration off by default
     4        https://bugs.webkit.org/show_bug.cgi?id=190901
     5
     6        Reviewed by Dean Jackson.
     7
     8        * page/RuntimeEnabledFeatures.h:
     9
    1102018-10-25  Jon Davis  <jond@apple.com>
    211
  • trunk/Source/WebCore/page/RuntimeEnabledFeatures.h

    r237245 r237421  
    347347    bool m_inputEventsEnabled { true };
    348348    bool m_areWebAnimationsEnabled { true };
    349     bool m_isWebAnimationsCSSIntegrationEnabled { true };
     349    bool m_isWebAnimationsCSSIntegrationEnabled { false };
    350350    bool m_isImageBitmapOffscreenCanvasEnabled { true };
    351351    bool m_isCacheAPIEnabled { false };
  • trunk/Source/WebKit/ChangeLog

    r237417 r237421  
     12018-10-25  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Turn Web Animations CSS Integration off by default
     4        https://bugs.webkit.org/show_bug.cgi?id=190901
     5
     6        Reviewed by Dean Jackson.
     7
     8        * Shared/WebPreferences.yaml:
     9
    1102018-10-25  Michael Catanzaro  <mcatanzaro@igalia.com>
    211
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r237402 r237421  
    12301230WebAnimationsCSSIntegrationEnabled:
    12311231  type: bool
    1232   defaultValue: true
     1232  defaultValue: DEFAULT_EXPERIMENTAL_FEATURES_ENABLED
    12331233  humanReadableName: "CSS Animations via Web Animations"
    12341234  humanReadableDescription: "Expose CSS Animations and CSS Transitions through getAnimations()"
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r237405 r237421  
     12018-10-25  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Turn Web Animations CSS Integration off by default
     4        https://bugs.webkit.org/show_bug.cgi?id=190901
     5
     6        Reviewed by Dean Jackson.
     7
     8        * WebView/WebPreferences.mm:
     9        (+[WebPreferences initialize]):
     10
    1112018-10-24  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm

    r237266 r237421  
    626626        [NSNumber numberWithBool:NO], WebKitCustomPasteboardDataEnabledPreferenceKey,
    627627        [NSNumber numberWithBool:YES], WebKitModernMediaControlsEnabledPreferenceKey,
    628         [NSNumber numberWithBool:YES], WebKitWebAnimationsCSSIntegrationEnabledPreferenceKey,
     628        [NSNumber numberWithBool:NO], WebKitWebAnimationsCSSIntegrationEnabledPreferenceKey,
    629629
    630630#if ENABLE(WEBGL2)
  • trunk/Source/WebKitLegacy/win/ChangeLog

    r237313 r237421  
     12018-10-25  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Turn Web Animations CSS Integration off by default
     4        https://bugs.webkit.org/show_bug.cgi?id=190901
     5
     6        Reviewed by Dean Jackson.
     7
     8        * WebPreferences.cpp:
     9        (WebPreferences::initializeDefaultSettings):
     10
    1112018-10-21  Fujii Hironori  <Hironori.Fujii@sony.com>
    212
  • trunk/Source/WebKitLegacy/win/WebPreferences.cpp

    r236623 r237421  
    310310    CFDictionaryAddValue(defaults, CFSTR(WebKitWebAnimationsEnabledPreferenceKey), kCFBooleanTrue);
    311311
    312     CFDictionaryAddValue(defaults, CFSTR(WebKitWebAnimationsCSSIntegrationEnabledPreferenceKey), kCFBooleanTrue);
     312    CFDictionaryAddValue(defaults, CFSTR(WebKitWebAnimationsCSSIntegrationEnabledPreferenceKey), kCFBooleanFalse);
    313313
    314314    CFDictionaryAddValue(defaults, CFSTR(WebKitUserTimingEnabledPreferenceKey), kCFBooleanFalse);
Note: See TracChangeset for help on using the changeset viewer.