Title: [277779] trunk/Source/WebKit
Revision
277779
Author
pvol...@apple.com
Date
2021-05-20 06:24:18 -0700 (Thu, 20 May 2021)

Log Message

The test fast/images/eps-as-image.html is a constant crash
https://bugs.webkit.org/show_bug.cgi?id=225989
<rdar://77354349>

Reviewed by Maciej Stachowiak.

This is caused by an incorrect sandbox rule. A related service is referred to as an XPC service, but it should be a global name.

* WebProcess/com.apple.WebProcess.sb.in:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (277778 => 277779)


--- trunk/Source/WebKit/ChangeLog	2021-05-20 13:21:40 UTC (rev 277778)
+++ trunk/Source/WebKit/ChangeLog	2021-05-20 13:24:18 UTC (rev 277779)
@@ -1,3 +1,15 @@
+2021-05-20  Per Arne  <pvol...@apple.com>
+
+        The test fast/images/eps-as-image.html is a constant crash
+        https://bugs.webkit.org/show_bug.cgi?id=225989
+        <rdar://77354349>
+
+        Reviewed by Maciej Stachowiak.
+
+        This is caused by an incorrect sandbox rule. A related service is referred to as an XPC service, but it should be a global name.
+
+        * WebProcess/com.apple.WebProcess.sb.in:
+
 2021-05-19  Tomoki Imai  <tomoki.i...@sony.com>
 
         Scrolling must be done after the layout when doing full page zoom

Modified: trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in (277778 => 277779)


--- trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-05-20 13:21:40 UTC (rev 277778)
+++ trunk/Source/WebKit/WebProcess/com.apple.WebProcess.sb.in	2021-05-20 13:24:18 UTC (rev 277779)
@@ -1744,6 +1744,7 @@
             "com.apple.iconservices"
             "com.apple.iconservices.store"
             "com.apple.tccd"
+            "com.apple.print.normalizerd" ;; <rdar://problem/77354349>
 
             ;;; FIXME(207716): The following should be removed when the GPU process is complete
             "com.apple.accessibility.mediaaccessibilityd"
@@ -1763,7 +1764,6 @@
             "com.apple.audio.SandboxHelper"
             "com.apple.coremedia.videodecoder"
             "com.apple.coremedia.videoencoder"
-            "com.apple.print.normalizerd" ;; <rdar://problem/77354349>
             ;;; FIXME(207716): End services to remove.
         )
     )
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to