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.
6 var port
= location
.search
.substr(1);
8 "http://127.0.0.1:" + port
+ "/server-redirect";
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
);