summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/https-upgrades/tentative/http-redirecting-to-http.https.sub.html
blob: 24d50a71bcd8a58d84383a1e5ce3f31d69f0d7f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
  <head>
    <title>HTTPS Upgrades: HTTP URL redirecting to HTTP</title>
    <script src="/resources/testharness.js"></script>
    <script src="/resources/testharnessreport.js"></script>
    <script src="/common/get-host-info.sub.js"></script>

  </head>
  <body>
    <script>
      setup({ single_test: true });
      // Loads an HTTP URL that redirects to another HTTP URL. HTTPS upgrading
      // should upgrade both the initial URL and the redirected URL to HTTPS.
      //
      // HTTPS upgrading doesn't change custom ports, so this will load
      // correctly if an HTTPS upgrade is performed, and will fail to load
      // otherwise (since the port will be wrong for http).
      var final_url = "http://{{host}}:{{ports[https][0]}}/https-upgrades/resources/pass.html";
      var url = new URL("http://{{host}}:{{ports[https][0]}}/fetch/api/resources/redirect.py?location=" + final_url);
      window.onmessage = function(event) {
          if (event.data === "pass") {
              done();
          }
      }
      win = window.open(url)
    </script>
  </body>
</html>