Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / chrome / test / data / extensions / api_test / webnavigation / download / a.js
blobe01c5e8ba4792565a7a14db89e4a459b4e72eb85
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 onload = function() {
6 var port = location.search.substr(1);
7 var redirect =
8 "http://127.0.0.1:" + port + "/server-redirect";
9 var target =
10 "http://127.0.0.1:" + port + "/not-found";
12 var link = document.createElement("a");
13 link.href = redirect + "?" + target;
14 link.download = "somefile.txt";
15 document.body.appendChild(link);
16 link.click();