summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/windows/support-post-to-opener.html
blob: 453fec97a78b5a26fd21c6ccc147da48f97ff520 (plain)
1
2
3
4
5
6
7
8
<script>
  if (window.opener) {
    window.opener.postMessage({
      "name": window.name,
      "isTop": window.top === window
    }, "*");
  }
</script>