summaryrefslogtreecommitdiffstats
path: root/dom/security/test/general/file_same_site_cookies_blob_iframe_navigation.html
blob: 815c6a6bfc86e5ad643fd2f4169e614e3637b266 (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
<html>
<body>
<iframe id="testframe"></iframe>
<script type="application/javascript">

  // simply passing on the message from the child to parent
  window.addEventListener("message", receiveMessage);
  function receiveMessage(event) {
    window.removeEventListener("message", receiveMessage);
    window.parent.postMessage({result: event.data.result}, '*');
  }

  const NESTED_IFRAME_NAVIGATION = `
    <html>
    <body>
      <a id="testlink" href="http://mochi.test:8888/tests/dom/security/test/general/file_same_site_cookies_iframe.sjs"></a>
      <script type="application/javascript">
        let link = document.getElementById("testlink");
        link.click();
      <\/script>
    </body>
  </html>`;
  let NESTED_BLOB_IFRAME_NAVIGATION = new Blob([NESTED_IFRAME_NAVIGATION], {type:'text/html'});

  // query the testframe and set blob URL
  let testframe = document.getElementById("testframe");
  testframe.src = window.URL.createObjectURL(NESTED_BLOB_IFRAME_NAVIGATION);
</script>
</body>
</html>