Title: [265260] trunk/Source/WebKit
Revision
265260
Author
pvol...@apple.com
Date
2020-08-04 14:03:14 -0700 (Tue, 04 Aug 2020)

Log Message

[iOS Simulator] Assert under WebPage::platformDidReceiveLoadParameters
https://bugs.webkit.org/show_bug.cgi?id=215108

Reviewed by Youenn Fablet.

This asserts because it appears that the WebContent and Networking process do not have the required entitlement
com.apple.private.webkit.use-xpc-endpoint on the iOS Simulator. Add the entitlement for simulator.

No new tests, covered by existing tests.

* Resources/ios/XPCService-embedded-simulator.entitlements:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (265259 => 265260)


--- trunk/Source/WebKit/ChangeLog	2020-08-04 20:55:49 UTC (rev 265259)
+++ trunk/Source/WebKit/ChangeLog	2020-08-04 21:03:14 UTC (rev 265260)
@@ -1,3 +1,17 @@
+2020-08-04  Per Arne Vollan  <pvol...@apple.com>
+
+        [iOS Simulator] Assert under WebPage::platformDidReceiveLoadParameters
+        https://bugs.webkit.org/show_bug.cgi?id=215108
+
+        Reviewed by Youenn Fablet.
+
+        This asserts because it appears that the WebContent and Networking process do not have the required entitlement
+        com.apple.private.webkit.use-xpc-endpoint on the iOS Simulator. Add the entitlement for simulator.
+ 
+        No new tests, covered by existing tests.
+
+        * Resources/ios/XPCService-embedded-simulator.entitlements:
+
 2020-08-03  Wenson Hsieh  <wenson_hs...@apple.com>
 
         Allow -accessoryDone to blur the focused element on iPad when AutoFilling strong passwords

Modified: trunk/Source/WebKit/Resources/ios/XPCService-embedded-simulator.entitlements (265259 => 265260)


--- trunk/Source/WebKit/Resources/ios/XPCService-embedded-simulator.entitlements	2020-08-04 20:55:49 UTC (rev 265259)
+++ trunk/Source/WebKit/Resources/ios/XPCService-embedded-simulator.entitlements	2020-08-04 21:03:14 UTC (rev 265260)
@@ -4,5 +4,7 @@
 <dict>
 	<key>com.apple.runningboard.assertions.webkit</key>
 	<true/>
+	<key>com.apple.private.webkit.use-xpc-endpoint</key>
+	<true/>
 </dict>
 </plist>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to