This is a test of the behavior of the picture element. If you use an img-tag inside the picture element, you want it to give width & height attributes (which *is* important). But if you also use the srcSet and sizes attributes it may lead to unexpected/unwanted behavior.
What happens is that the width & height attributes cancel out the sizes-attribute. You can prevent this from happening by using CSS, but that makes the sizes attribute redundant, so you should remove it. It was Stefan Judis's article that set me on track for figuring this out.