https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4becbdbe3b5408b654c0b3a3803e7cbc818eacfd authored by Asami Doi on 30 October 2018, 09:19:07 UTC
ServiceWorker: Add the WPT tests to catch an error when fetch a script.
Tip revision: 4becbdb
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