https://github.com/web-platform-tests/wpt
Raw File
Tip revision: f45c992c2cad60ea26546707423f8a18d6efcb43 authored by Mustaq Ahmed on 22 November 2018, 14:48:26 UTC
WIP: Fix testdriver clicks to make bluetooth wpt pass with UAv2.
Tip revision: f45c992
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