chromium/chrome/test/data/downloads/download-anchor-attrib-404.html

<html>
<head><title>&lt;a download&gt; that results in a status code of 404</title></head>
<body>
<a id='download' href="there_IS_no_spoon.zip" download='foo'>Download</a>
<script>
window.setTimeout(function() {
  var evt = document.createEvent("MouseEvent");
  evt.initMouseEvent('click', true, true);
  document.getElementById('download').dispatchEvent(evt);
}, 0);
</script>
</body>
</html>