summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/download-anchor-attrib.html
blob: 7faf4169a0f39d2d73bf23a37e0bf2f03e1a4cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<html>
<head><title>Download Test for &lt;a download&gt;</title></head>
<body>
<a id='red-dot' href="anchor_download_test.png" download='a_red_dot.png'>Download Red Dot!</a>
<script>
window.setTimeout(function() {
  var evt = document.createEvent("MouseEvent");
  evt.initMouseEvent('click', true, true);
  document.getElementById('red-dot').dispatchEvent(evt);
}, 0);
</script>
</body>
</html>