Changeset 290562 in webkit
- Timestamp:
- Feb 27, 2022 8:26:51 AM (5 months ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/MIMETypeRegistry.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r290561 r290562 1 2022-02-27 Dean Jackson <dino@apple.com> 2 3 Loading a USDZ url as the main resource renders as garbage 4 https://bugs.webkit.org/show_bug.cgi?id=237240 5 rdar://88767033 6 7 Reviewed by Antoine Quint. 8 9 We can't render a USD document if the ModelDocument feature is not enabled. 10 11 * platform/MIMETypeRegistry.cpp: 12 (WebCore::MIMETypeRegistry::canShowMIMEType): 13 1 14 2022-02-27 Antoine Quint <graouts@webkit.org> 2 15 -
trunk/Source/WebCore/platform/MIMETypeRegistry.cpp
r290300 r290562 29 29 30 30 #include "MediaPlayer.h" 31 #include "RuntimeEnabledFeatures.h" 31 32 #include "ThreadGlobalData.h" 32 33 #include <wtf/FixedVector.h> … … 668 669 669 670 #if ENABLE(MODEL_ELEMENT) 670 if (isSupportedModelMIMEType(mimeType) )671 if (isSupportedModelMIMEType(mimeType) && RuntimeEnabledFeatures::sharedFeatures().modelDocumentEnabled()) 671 672 return true; 672 673 #endif
Note: See TracChangeset
for help on using the changeset viewer.