Changeset 251237 in webkit


Ignore:
Timestamp:
Oct 17, 2019 9:24:49 AM (5 years ago)
Author:
commit-queue@webkit.org
Message:

[Web Animations] Enable the Web Animations JavaScript API by default
https://bugs.webkit.org/show_bug.cgi?id=203075

Patch by Antoine Quint <Antoine Quint> on 2019-10-17
Reviewed by Antti Koivisto.

Source/WebCore:

  • page/RuntimeEnabledFeatures.h:

Source/WebKit:

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r251236 r251237  
     12019-10-17  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Enable the Web Animations JavaScript API by default
     4        https://bugs.webkit.org/show_bug.cgi?id=203075
     5
     6        Reviewed by Antti Koivisto.
     7
     8        * page/RuntimeEnabledFeatures.h:
     9
    1102019-10-17  Wenson Hsieh  <wenson_hsieh@apple.com>
    211
  • trunk/Source/WebCore/page/RuntimeEnabledFeatures.h

    r251213 r251237  
    406406    bool m_isWebShareEnabled { false };
    407407    bool m_inputEventsEnabled { true };
    408     bool m_areWebAnimationsEnabled { false };
     408    bool m_areWebAnimationsEnabled { true };
    409409    bool m_isWebAnimationsCSSIntegrationEnabled { false };
    410410    bool m_isImageBitmapOffscreenCanvasEnabled { true };
  • trunk/Source/WebKit/ChangeLog

    r251228 r251237  
     12019-10-17  Antoine Quint  <graouts@apple.com>
     2
     3        [Web Animations] Enable the Web Animations JavaScript API by default
     4        https://bugs.webkit.org/show_bug.cgi?id=203075
     5
     6        Reviewed by Antti Koivisto.
     7
     8        * Shared/WebPreferences.yaml:
     9
    1102019-10-17  Carlos Alberto Lopez Perez  <clopez@igalia.com>
    211
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r251220 r251237  
    13071307WebAnimationsEnabled:
    13081308  type: bool
    1309   defaultValue: DEFAULT_EXPERIMENTAL_FEATURES_ENABLED
     1309  defaultValue: true
    13101310  humanReadableName: "Web Animations"
    13111311  humanReadableDescription: "Web Animations prototype"
Note: See TracChangeset for help on using the changeset viewer.