Description
When I run the bookmarklet on an image with a srcset using w values, it suggests a sizes attribute but when I use the suggested sizes attribute, the test still fails...
<img
srcset="
/images/silverware/ash-trays/l3118/xs/l3118-silver-ash-trays-1.jpg 80w,
/images/silverware/ash-trays/l3118/s/l3118-silver-ash-trays-1.jpg 100w,
/images/silverware/ash-trays/l3118/m/l3118-silver-ash-trays-1.jpg 200w,
/images/silverware/ash-trays/l3118/l/l3118-silver-ash-trays-1.jpg 350w,
/images/silverware/ash-trays/l3118/xl/l3118-silver-ash-trays-1.jpg 600w,
"
src="/images/silverware/ash-trays/l3118/xl/l3118-silver-ash-trays-1.jpg"
sizes="
(min-width: 1520px) 573px,
(min-width: 1220px) 39.29vw,
(min-width: 780px) calc(45.24vw - 60px),
calc(56.3vw - 102px)
"
>
The sizes attribute has to match the width of the image
The size of the image doesn’t match the sizes attribute (min-width: 1520px) 573px, (min-width: 1220px) 39.29vw, (min-width: 780px) calc(45.24vw - 60px), calc(56.3vw - 102px). At a viewport of 320x427 the image was 208 pixels wide instead of the specified 78 (167% difference). The affected viewports are 300x400-760x1013.Try using sizes="(min-width: 1520px) 573px, (min-width: 1220px) 39.29vw, (min-width: 780px) calc(45.24vw - 60px), calc(56.3vw - 102px)" instead.
Are the bookmarklet generated sizes wrong? Or am I doing something wrong?