https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4815836aab313681c91f235c8273b4d24592ecab authored by kaixinjxq on 08 April 2018, 03:26:12 UTC
Adapt web-nfc IDL tests to latest spec
Tip revision: 4815836
MessagePort_initial_disabled.htm
<!DOCTYPE html>
<title>MessageChannel: port message queue is initially disabled</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();
  channel.port2.addEventListener("message", t.unreached_func(), true);
  channel.port1.postMessage("ping");
  setTimeout(t.step_func_done(), 100);
});
</script>
back to top