Closed Firminator closed 9 years ago
Also those with .jpeg extension, and PNG as well.
It looks like this is being caused by a new content type in nsIContentPolicy
. When an image is loaded via <img srcset="...">
it is classified as
/**
* Indicates a <img srcset> or <picture> request.
*/
const nsContentPolicyType TYPE_IMAGESET = 21;
See here
http://mxr.mozilla.org/mozilla-central/source/dom/base/nsIContentPolicyBase.idl#170
Since it isn't an available content type here it gets classified as Other
here.
The MDN docs haven't been updated to reflect the new content type. I ran into this problem when updating Firefox from 36 to 38 while maintaining the same Policeman version 0.18.1.1
http://computerbase.de to reproduce.