summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/windows/support-nested-browsing-contexts.html
blob: e92b69d7e73c70a6699262bc823ffe022b4eb0d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<body>
<script>
  var i = document.createElement("iframe");
  i.name = "nested1";
  document.body.appendChild(i);

  window.opener.postMessage({
    "name": window.name,
    "isTop": window.top === window
  }, "*");
</script>
</body>