Bug 242932

Summary: re-enable Display P3 canvas support on iOS Simulator
Product: WebKit Reporter: Cameron McCormack (:heycam) <heycam>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: ap, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

Description Cameron McCormack (:heycam) 2022-07-19 20:30:27 PDT
Fixes to the simulator should have landed so that these tests can run again.
Comment 1 Radar WebKit Bug Importer 2022-07-19 20:30:39 PDT
<rdar://problem/97297372>
Comment 2 Cameron McCormack (:heycam) 2022-07-19 20:32:16 PDT
The explicit disabling of Display P3 canvas support is done by this in PlatformEnable.h:

#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000) \
    || (PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR))
#define HAVE_CORE_ANIMATION_FIX_FOR_RADAR_78402035 1
#endif

It's kind of misleading that the simulator restriction is applied to HAVE_CORE_ANIMATION_FIX_FOR_RADAR_78402035, a different issue.