WebKit Bugzilla
Attachment 370719 Details for
Bug 198286
: [AppleWin] Assertion failure in defaultSupportedImageTypes in UTIRegistry.cpp
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198286-20190528181652.patch (text/plain), 1.70 KB, created by
Fujii Hironori
on 2019-05-28 02:16:53 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Fujii Hironori
Created:
2019-05-28 02:16:53 PDT
Size:
1.70 KB
patch
obsolete
>Subversion Revision: 245787 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index 61d819f67ce7efdc82a7989506800ef547fe939e..4b8f15e5ff167fc38a51ba2b14c9ad7a8c9addfa 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,17 @@ >+2019-05-28 Fujii Hironori <Hironori.Fujii@sony.com> >+ >+ [AppleWin] Assertion failure in defaultSupportedImageTypes in UTIRegistry.cpp >+ https://bugs.webkit.org/show_bug.cgi?id=198286 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Some image types aren't supported by CG for Windows. >+ >+ No new tests, covered by existing tests. >+ >+ * platform/graphics/cg/UTIRegistry.cpp: >+ (WebCore::defaultSupportedImageTypes): Exclude some image types for PLATFORM(WIN). >+ > 2019-05-26 Simon Fraser <simon.fraser@apple.com> > > Move VelocityData to WebCore >diff --git a/Source/WebCore/platform/graphics/cg/UTIRegistry.cpp b/Source/WebCore/platform/graphics/cg/UTIRegistry.cpp >index b8c2ab508e9df86c355c09faa4fb08e2e21d4bd4..b389a507cd32a58868d58dfde10b86b02d6c541e 100644 >--- a/Source/WebCore/platform/graphics/cg/UTIRegistry.cpp >+++ b/Source/WebCore/platform/graphics/cg/UTIRegistry.cpp >@@ -47,13 +47,15 @@ const HashSet<String>& defaultSupportedImageTypes() > static NeverDestroyed<HashSet<String>> defaultSupportedImageTypes = std::initializer_list<String> { > "com.compuserve.gif", > "com.microsoft.bmp", >+ "public.jpeg", >+ "public.png", >+ "public.tiff", >+#if !PLATFORM(WIN) > "com.microsoft.cur", > "com.microsoft.ico", >- "public.jpeg", > "public.jpeg-2000", > "public.mpo-image", >- "public.png", >- "public.tiff", >+#endif > }; > > #ifndef NDEBUG
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
ews-watchlist
:
commit-queue-
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198286
:
370719
|
370725
|
378623
|
378931