How can I use picturefill
to serve retina images?
Currently I'm using the second version of picturefill.js which works as a polyfill.
My HTML code is:
<img src="http://placehold.it/300x150" srcset="http://placehold.it/600x300 2x" alt="Alternative" />
The problem is: all browsers (except Chrome) are getting the "2x" version, but my screen doesn't support retina.
I think Chrome is working because this feature was recently implemented.
What am I doing wrong?