There is an image tag with srcset attribute that looks like this:
<img src="..." srcset="small.jpg 300w, large.jpg 900w" sizes="300px" /> On normal 1x dpi screen it loads small.jpg, but on high DPI screens (such as retina) - it loads large.jpg.
Is there some way to make it load small.jpg on high DPI screens?