Closed jonaseberle closed 5 years ago
When using the ImageViewHelper like this
<sms:image image="{file}" breakpoints="
this HTML gets output:
<picture> <source srcset="..." media="..." sizes="..."> ... <img srcset="..." ...></picture> </picture>
IMHO the <img> tag should have src= instead of srcset=
<img>
src=
srcset=
In the current way IE11 does not display the image.
By using picturefill=0, an src= is rendered.
Also there will be some changes in this area according to Simon. Thanks for your help via Slack!
When using the ImageViewHelper like this
this HTML gets output:
IMHO the
<img>
tag should havesrc=
instead ofsrcset=
In the current way IE11 does not display the image.