summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/samesite/iframe-reload.https.html
blob: d1916a805c36894d6440a7ffbb62544630c279ce (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<meta charset="utf-8"/>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/cookies/resources/cookie-helper.sub.js"></script>
<!-- We're appending an <iframe> to the document's body, so execute tests after we have a body -->
<body>
<script>
  // This test creates an iframe with postToParent.py on the specified origin,
  // which sends a postMessage event with the cookies it received back to the
  // parent (i.e., here). Upon receiving the message, the test verifies that the
  // correct cookies were sent to the iframe, and posts a message back to the
  // iframe telling it to reload itself. Upon reload, the iframe sends a
  // postMessage event back to the test with the cookies it received, which are
  // again verified.
  function create_test(origin, target, expectedStatus, expectedDomStatus, title) {
    promise_test(t => {
      var value = "" + Math.random();
      return resetSameSiteCookies(origin, value)
        .then(_ => {
          return new Promise((resolve, reject) => {
            var iframe = document.createElement("iframe");
            iframe.onerror = _ => reject("IFrame could not be loaded.");

            var reloaded = false;
            var msgHandler = e => {
              try {
                verifySameSiteCookieState(expectedStatus, value, e.data, expectedDomStatus);
              } catch (e) {
                reject(e);
              }

              if (reloaded) {
                window.removeEventListener("message", msgHandler);
                document.body.removeChild(iframe);
                resolve("IFrame received the cookie.");
              } else {
                reloaded = true;
                e.source.postMessage("reload", "*");
              }
            };
            window.addEventListener("message", msgHandler);

            iframe.src = target + "/cookies/resources/postToParent.py";
            document.body.appendChild(iframe);
          });
        });
    }, title);
  }

  create_test(SECURE_ORIGIN, SECURE_ORIGIN, SameSiteStatus.STRICT, DomSameSiteStatus.SAME_SITE, "Reloaded same-host fetches are strictly same-site");
  create_test(SECURE_SUBDOMAIN_ORIGIN, SECURE_SUBDOMAIN_ORIGIN, SameSiteStatus.STRICT, DomSameSiteStatus.SAME_SITE, "Reloaded subdomain fetches are strictly same-site");
  create_test(SECURE_CROSS_SITE_ORIGIN, SECURE_CROSS_SITE_ORIGIN, SameSiteStatus.CROSS_SITE, DomSameSiteStatus.CROSS_SITE, "Reloaded cross-site fetches are cross-site");
</script>