Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: chrome/test/data/downloads/download-anchor-attrib-name-not-resolved.html

Issue 148133007: [Downloads] Always call DM::StartDownload() for explicit downloads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typos Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head><title>&lt;a download&gt; that refers to a nonexistent hostname</title></h ead>
3 <body>
4 <a id='download' href="http://doesnotexist/shouldnotberesolved" download='foo'>D ownload</a>
5 <script>
6 window.setTimeout(function() {
7 var evt = document.createEvent("MouseEvent");
8 evt.initMouseEvent('click', true, true);
9 document.getElementById('download').dispatchEvent(evt);
10 }, 0);
11 </script>
12 </body>
13 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/downloads/download-anchor-attrib-404.html ('k') | content/browser/download/download_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698