summaryrefslogtreecommitdiffstats
path: root/dom/security/test/mixedcontentblocker/file_auth_download_page.html
blob: 931d9d00ad738567a4b2ada304dc38d71f74112d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
  <head>
    <title>Test mixed content download with auth header by https-first</title>
  </head>
  <body>
    hi

    <script>
      const host = window.location.host;
      const path = location.pathname.replace("file_auth_download_page.html","file_auth_download_server.sjs");

      const insecureLink = document.createElement("a");
      insecureLink.href = `http://${host}${path}?user=user&pass=pass`;
      insecureLink.download = "true";
      insecureLink.id = "insecure";
      insecureLink.textContent = "Not secure Link";

      document.body.append(insecureLink);
  </script>
  </body>
</html>