summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/message-channels/resources/cross-document-1.html
blob: 93725a93f8764380c9bcb07557371ff3a04eb5cb (plain)
1
2
3
4
5
6
7
8
<!doctype html>
<title>crosss-document-1</title>
<script>
onmessage = function(e) {
  var port = e.ports[0];
  port.postMessage(e.data);
}
</script>