diff --git a/lighthouse-core/gather/gatherers/image-usage.js b/lighthouse-core/gather/gatherers/image-usage.js index 0f97537135fd..6071b86af2f9 100644 --- a/lighthouse-core/gather/gatherers/image-usage.js +++ b/lighthouse-core/gather/gatherers/image-usage.js @@ -53,8 +53,9 @@ function collectImageElementInfo() { naturalHeight: element.naturalHeight, isCss: false, isPicture: !!element.parentElement && element.parentElement.tagName === 'PICTURE', - usesObjectFit: computedStyle.getPropertyValue('object-fit') === 'cover' - || computedStyle.getPropertyValue('object-fit') === 'contain', + usesObjectFit: ['cover', 'contain', 'scale-down', 'none'].includes( + computedStyle.getPropertyValue('object-fit') + ), }; });