Changeset 252945 in webkit


Ignore:
Timestamp:
Nov 29, 2019 10:15:03 AM (4 years ago)
Author:
graouts@webkit.org
Message:

[Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
https://bugs.webkit.org/show_bug.cgi?id=204650
<rdar://problem/45562752>

Reviewed by Dean Jackson.

Source/WebCore:

  • page/RuntimeEnabledFeatures.h:

Source/WebKit:

  • Shared/WebPreferences.yaml:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r252944 r252945  
     12019-11-27  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
     4        https://bugs.webkit.org/show_bug.cgi?id=204650
     5        <rdar://problem/45562752>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * page/RuntimeEnabledFeatures.h:
     10
    1112019-11-29  Antoine Quint  <graouts@apple.com>
    212
  • trunk/Source/WebCore/page/RuntimeEnabledFeatures.h

    r252893 r252945  
    415415    bool m_inputEventsEnabled { true };
    416416    bool m_areWebAnimationsEnabled { true };
    417     bool m_isWebAnimationsCSSIntegrationEnabled { false };
     417    bool m_isWebAnimationsCSSIntegrationEnabled { true };
    418418    bool m_isImageBitmapEnabled { true };
    419419#if ENABLE(OFFSCREEN_CANVAS)
  • trunk/Source/WebKit/ChangeLog

    r252936 r252945  
     12019-11-27  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Enable WebAnimationsCSSIntegrationEnabled by default
     4        https://bugs.webkit.org/show_bug.cgi?id=204650
     5        <rdar://problem/45562752>
     6
     7        Reviewed by Dean Jackson.
     8
     9        * Shared/WebPreferences.yaml:
     10
    1112019-11-28  Fujii Hironori  <Hironori.Fujii@sony.com>
    212
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r252893 r252945  
    13201320WebAnimationsCSSIntegrationEnabled:
    13211321  type: bool
    1322   defaultValue: false
     1322  defaultValue: true
    13231323  humanReadableName: "CSS Animations via Web Animations"
    13241324  humanReadableDescription: "Expose CSS Animations and CSS Transitions through getAnimations()"
Note: See TracChangeset for help on using the changeset viewer.