https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 5a9c1d6873bebdf3231a839eb634b1d7cb26e9b7 authored by Luke Bjerring on 04 April 2018, 15:18:10 UTC
Fix affected tests
Tip revision: 5a9c1d6
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