Changeset 294729 in webkit
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/platform/ios-wk2/TestExpectations
r294529 r294729 2237 2237 fast/text/install-font-style-recalc.html [ Pass ] 2238 2238 2239 webkit.org/b/240352 system-preview/badge.html [ ImageOnlyFailure ]2240 2241 2239 # webkit.org/b/240579 Disabling the following http/tests/workers/service/shownotification layout-tests on iOS 2242 2240 http/tests/workers/service/shownotification-allowed-document.html [ Skip ] -
trunk/Source/WebCore/platform/graphics/displaylists/DisplayListRecorder.cpp
r294145 r294729 206 206 if (is<ARKitBadgeSystemImage>(systemImage)) { 207 207 if (auto image = downcast<ARKitBadgeSystemImage>(systemImage).image()) { 208 if (auto nativeImage = image->nativeImage()) 209 recordResourceUse(*nativeImage); 208 auto nativeImage = image->nativeImage(); 209 if (!nativeImage) 210 return; 211 recordResourceUse(*nativeImage); 210 212 } 211 return;212 213 } 213 214 #endif
Note:
See TracChangeset
for help on using the changeset viewer.