⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280885 in webkit


Ignore:
Timestamp:
Aug 10, 2021, 11:57:42 PM (5 years ago)
Author:
Peng Liu
Message:

Disable SYSTEM_FEATURE_FLAGS on iOS 14
https://bugs.webkit.org/show_bug.cgi?id=228979
<rdar://problem/81764452>

Reviewed by Tim Horton.

Stop using feature flags mechanism on iOS 14 to avoid some issues on iOS simulators.

  • wtf/PlatformHave.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r280866 r280885  
     12021-08-10  Peng Liu  <peng.liu6@apple.com>
     2
     3        Disable SYSTEM_FEATURE_FLAGS on iOS 14
     4        https://bugs.webkit.org/show_bug.cgi?id=228979
     5        <rdar://problem/81764452>
     6
     7        Reviewed by Tim Horton.
     8
     9        Stop using feature flags mechanism on iOS 14 to avoid some issues on iOS simulators.
     10
     11        * wtf/PlatformHave.h:
     12
    1132021-08-10  Stephan Szabo  <stephan.szabo@sony.com>
    214
  • trunk/Source/WTF/wtf/PlatformHave.h

    r280558 r280885  
    672672
    673673#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000) \
    674     || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) \
     674    || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000) \
    675675    || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 70000) \
    676676    || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 140000) \
Note: See TracChangeset for help on using the changeset viewer.