summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/embedded-content/the-iframe-element/support/load-into-the-iframe.html
blob: 9e08eb587ab38283b53034128ca36c82b545d03f (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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    <iframe sandbox="allow-scripts"></iframe>
    <script>
      let frame = document.querySelector("iframe");
      let sandbox = new URL(location.href).searchParams.get("sandbox");
      if (sandbox) {
        frame.sandbox = sandbox;
      }
      // We're the popup (i.e. a top frame).  Load into the iframe the page
      // trying to modifying the top frame and transmit the result to our
      // opener.
      onmessage = function(e) {
        opener.postMessage(e.data, "*")
      }
      frame.src = "iframe-that-performs-top-navigation-on-popup.html";
    </script>
  </body>
</html>