I am trying to use a picture tag to show an animated image (gif), but it is not loading.
The same file loads fine when I use an img tag.
Why is that? What am I doing wrong?
<!-- This works -->
<img src="./some.gif" />
<!-- This does not work -->
<picture>
<source srcset="./some.gif" type="image/gif" />
</picture>
Tried specifying type="image/gif". It still didn't work.