summaryrefslogtreecommitdiffstats
path: root/dom/serviceworkers/test/window_party_iframes.html
blob: abeea4449b46643ab188a31a98e3fe1d973f6497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-type" content="text/html;charset=UTF-8">
</head>
<body>
<iframe></iframe>
<script>
window.onmessage = e => {
  opener.postMessage(e.data, "*");
}
</script>
</body>
</html>