On iOS Simulator, the following code asserts in WebPage::platformDidReceiveLoadParameters: bool databaseUpdated = LaunchServicesDatabaseManager::singleton().waitForDatabaseUpdate(5_s); ASSERT_UNUSED(databaseUpdated, databaseUpdated);
Created attachment 405875 [details] Patch
<rdar://problem/66496731>
Comment on attachment 405875 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=405875&action=review > Source/WebKit/ChangeLog:9 > + com.apple.private.webkit.use-xpc-endpoint on the iOS Simulator. Disable the entitlment check for simulator. r=me but before landing, could you try (or maybe you did already) to add this entitlement to iOS simulator? Looking at the code, I see XPCService-embedded-simulator.entitlements for instance where we could try adding that entitlement.
Created attachment 405939 [details] Patch
Committed r265260: <https://trac.webkit.org/changeset/265260> All reviewed patches have been landed. Closing bug and clearing flags on attachment 405939 [details].
(In reply to youenn fablet from comment #3) > Comment on attachment 405875 [details] > Patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=405875&action=review > > > Source/WebKit/ChangeLog:9 > > + com.apple.private.webkit.use-xpc-endpoint on the iOS Simulator. Disable the entitlment check for simulator. > > r=me but before landing, could you try (or maybe you did already) to add > this entitlement to iOS simulator? > Looking at the code, I see XPCService-embedded-simulator.entitlements for > instance where we could try adding that entitlement. Good point! That did the trick. Thanks for reviewing!