summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/schemeful-same-site/schemeful-navigation.tentative.html
blob: c1a86690dc90f569ad3c6eaa23f1e6d6c2589dae (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
<!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>
<script>
  function schemeful_navigation_test(target, expectedSameSiteStatus, title) {
    promise_test(async function(t) {
      let value = "" + Math.random();
      document.cookie = `samesite_strict=${value}; sameSite=strict; path=/`;
      document.cookie = `samesite_lax=${value}; sameSite=lax; path=/`;

      let url = target + "/cookies/schemeful-same-site/resources/navigateToInsecurePostToParent.html";

      await new Promise((resolve, reject) => {
          window.onmessage = t.step_func(e => {
            if (e.source == window.open("", "testwindow" + value)) {
              e.source.close();
              const cookies = e.data;

              assert_equals(cookies["samesite_lax"], value, "SameSite=lax cookies can be sent in both cases");
              if (expectedSameSiteStatus === SameSiteStatus.STRICT) {
                assert_equals(cookies["samesite_strict"], value, "SameSite=strict cookies can be sent to same-scheme navigations");
              } else if (expectedSameSiteStatus === SameSiteStatus.LAX) {
                assert_not_equals(cookies["samesite_strict"], value, "SameSite=strict cookies cannot be sent to cross-scheme navigations");
              }

              resolve();
            }
            else {reject();}
          });

          var w = window.open(url, "testwindow" + value);
        });

    },title);}

  schemeful_navigation_test(INSECURE_ORIGIN, SameSiteStatus.STRICT, "Navigate same-scheme");
  schemeful_navigation_test(SECURE_ORIGIN, SameSiteStatus.LAX, "Navigate cross-scheme");
</script>