summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/windows/browsing-context-names/resources/post-to-opener.html
blob: 3e9b7aaccb0ddac7e97d1e8803bf82feeb4ab079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<meta charset="utf-8">
<title>HTML Test: post window's name to top browsing context</title>
<link rel="author" title="Intel" href="http://www.intel.com/">
<script>
if (window.opener) {
  window.opener.postMessage({
    name: window.name,
    isTop: (window.top === window)
  }, "*");
}
</script>