| Summary: | [iOS Simulator] Assert under WebPage::platformDidReceiveLoadParameters | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Per Arne Vollan <pvollan> | ||||||
| Component: | WebKit Misc. | Assignee: | Per Arne Vollan <pvollan> | ||||||
| Status: | RESOLVED FIXED | ||||||||
| Severity: | Normal | CC: | bfulgham, katherine_cheney, ryanhaddad, webkit-bug-importer, youennf | ||||||
| Priority: | P2 | Keywords: | InRadar | ||||||
| Version: | WebKit Nightly Build | ||||||||
| Hardware: | Unspecified | ||||||||
| OS: | Unspecified | ||||||||
| Attachments: |
|
||||||||
Created attachment 405875 [details]
Patch
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! |
On iOS Simulator, the following code asserts in WebPage::platformDidReceiveLoadParameters: bool databaseUpdated = LaunchServicesDatabaseManager::singleton().waitForDatabaseUpdate(5_s); ASSERT_UNUSED(databaseUpdated, databaseUpdated);