https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c366d0e0c10ab968e6fb97fbd98b1c9abb00a93c authored by Alex Moshchuk on 19 April 2018, 17:55:30 UTC
Fix incorrect unreachable_func in CSP layout tests.
Tip revision: c366d0e
postMessage_target_source.htm
<!DOCTYPE html>
<title> postMessage(): target port and source port </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function(t) {
  var channel = new MessageChannel();
  var source = channel.port1;
  var target = channel.port2;
  target.start();
  target.addEventListener("message", t.step_func_done(function(e) {
    assert_equals(e.target, target);
    assert_not_equals(e.target, source);
  }), true);
  source.postMessage("ping");
});
</script>
back to top