https://github.com/web-platform-tests/wpt
Raw File
Tip revision: dd481055a1da9b97baeb0848789c398f1ffeaa6d authored by Philip Jägenstedt on 27 September 2018, 10:31:44 UTC
[cssom] Add a test for border shorthand property
Tip revision: dd48105
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