https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 57632ae39c1574ba0e8ba16202904171f0c3854e authored by Harald Alvestrand on 21 March 2018, 19:52:04 UTC
Test that DTMFSender rejects properly after close
Tip revision: 57632ae
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