14 lines
407 B
HTML
14 lines
407 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Test http download with https-first enabled</title>
|
|
</head>
|
|
<body>
|
|
<a href="http://example.com/browser/dom/security/test/https-first/file_nohttps_download.sjs" download="file.txt" id="testlink">download</a>
|
|
<script>
|
|
// click the link to start download
|
|
let testlink = document.getElementById("testlink");
|
|
testlink.click();
|
|
</script>
|
|
</body>
|
|
</html>
|