https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 4b90437e8c2a8cca4b8c4af28d1893ac6f0fc61c authored by Domenic Denicola on 10 August 2016, 23:35:08 UTC
Add multi-global tests for service worker URL parsing
Tip revision: 4b90437
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