Look at the following code. Chrome logs one request in debug console. If this is because of caching, why does it not log two requests with the last one being 304?
What explains this browser behavior?
<script>
new Image().src="//stackoverflow.com/"
new Image().src="//stackoverflow.com/"
</script>