img {
width: 100%;
}
<img srcset="http://lorempixel.com/400/200 400w,
http://lorempixel.com/300/200 300w,
http://lorempixel.com/200/200 200w">
Try resizing that JS bin in Chrome ~61. The image keeps changing, even above the 400px mark.
Firefox OTOH is more logical -- it breaks at 300px and 200px, just like I'd expect.
400px wide is the widest picture in my srcset, so why is Chrome re-fetching new images even though the parameters haven't changed?