a[download] test

by flyingsheep

HTML

<a href="data:text/plain,this%20is%20so%20cool" download>Should download</a>
<a href="http://theinternet.com" download>Should goto page</a>
<a href="http://www.lowbird.com/data/images/2012/11/7813328440-a89aa4c380-b.jpg" download>Should go to page</a>
<a href="#" download="test.blob" id="blob">Should download as 'test.blob'</a>

CSS

a { display: block }

JavaScript

var blob = new Blob(['test file']);
document.getElementById('blob').href = URL.createObjectURL(blob);