Changeset 250889 in webkit


Ignore:
Timestamp:
Oct 8, 2019 11:39:12 PM (5 years ago)
Author:
Antti Koivisto
Message:

[CSS Shadow Parts] Enable by default
https://bugs.webkit.org/show_bug.cgi?id=202644

Reviewed by Ryosuke Niwa.

Source/WebCore:

Flip the switch.

  • page/RuntimeEnabledFeatures.h:

Source/WebKit:

  • Shared/WebPreferences.yaml:

Flip the switch.

Source/WebKitLegacy/mac:

  • WebView/WebPreferences.mm:

(+[WebPreferences initialize]):

Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r250887 r250889  
     12019-10-08  Antti Koivisto  <antti@apple.com>
     2
     3        [CSS Shadow Parts] Enable by default
     4        https://bugs.webkit.org/show_bug.cgi?id=202644
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Flip the switch.
     9
     10        * page/RuntimeEnabledFeatures.h:
     11
    1122019-10-08  Jiewen Tan  <jiewen_tan@apple.com>
    213
  • trunk/Source/WebCore/page/RuntimeEnabledFeatures.h

    r250584 r250889  
    578578    bool m_lazyImageLoadingEnabled { false };
    579579    bool m_secureContextChecksEnabled { true };
    580     bool m_isCSSShadowPartsEnabled { false };
     580    bool m_isCSSShadowPartsEnabled { true };
    581581
    582582    friend class WTF::NeverDestroyed<RuntimeEnabledFeatures>;
  • trunk/Source/WebKit/ChangeLog

    r250876 r250889  
     12019-10-08  Antti Koivisto  <antti@apple.com>
     2
     3        [CSS Shadow Parts] Enable by default
     4        https://bugs.webkit.org/show_bug.cgi?id=202644
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * Shared/WebPreferences.yaml:
     9
     10        Flip the switch.
     11
    1122019-10-08  Andy Estes  <aestes@apple.com>
    213
  • trunk/Source/WebKit/Shared/WebPreferences.yaml

    r250824 r250889  
    14581458CSSShadowPartsEnabled:
    14591459  type: bool
    1460   defaultValue: false
     1460  defaultValue: true
    14611461  humanReadableName: "CSS Shadow Parts"
    14621462  humanReadableDescription: "Enable CSS Shadow Parts"
  • trunk/Source/WebKitLegacy/mac/ChangeLog

    r250816 r250889  
     12019-10-08  Antti Koivisto  <antti@apple.com>
     2
     3        [CSS Shadow Parts] Enable by default
     4        https://bugs.webkit.org/show_bug.cgi?id=202644
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        * WebView/WebPreferences.mm:
     9        (+[WebPreferences initialize]):
     10
    1112019-10-07  Ryosuke Niwa  <rniwa@webkit.org>
    212
  • trunk/Source/WebKitLegacy/mac/WebView/WebPreferences.mm

    r250816 r250889  
    693693        @NO, WebKitRequestIdleCallbackEnabledPreferenceKey,
    694694        @NO, WebKitLinkPreloadResponsiveImagesEnabledPreferenceKey,
    695         @NO, WebKitCSSShadowPartsEnabledPreferenceKey,
     695        @YES, WebKitCSSShadowPartsEnabledPreferenceKey,
    696696        nil];
    697697
Note: See TracChangeset for help on using the changeset viewer.