summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webstorage/resources/sessionStorage-about-blank-partitioned-iframe.html
blob: dd530a7c221a2c4cd4403b0fa5ea5469784bdece (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
<!doctype html>
<meta charset="utf-8">
<script>

function getOrCreateID(key) {
  if (!sessionStorage.getItem(key)) {
    const newID = new Date() + "-" + Math.random();
    sessionStorage.setItem(key, newID);
  }
  return sessionStorage.getItem(key);
}

window.addEventListener("load", () => {
  // In this testing set-up, only cross-site iframes will have an opener.
  if (parent.opener) {
    const payload = {
      message: "cross-site window iframe loaded",
      userID: getOrCreateID("userID"),
    }
    // Once the cross-site iframe has loaded, we send a message back to
    // the main window with the ID from sessionStorage.
    parent.opener.postMessage(payload, parent.opener.origin);
  }
});

window.addEventListener("message", (e) => {
  if (e.data.command == "create ID") {
    // e.data.key is equivalent to "userID"
    getOrCreateID(e.data.key);

    const payload = {
      message: "ID created",
      userID: sessionStorage.getItem("userID"),
    }
    // Return the ID from sessionStorage to the main window.
    e.source.postMessage(payload, e.source.origin);
  }

  // Additional functionality for clean-up at the end of the test.
  if (e.data.command == "clearStorage") {
    sessionStorage.clear();
  }
});
</script>