https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2af196cb3a52b93a0f32bed1d86e3b787c23f019 authored by Xianzhu Wang on 21 December 2018, 19:43:44 UTC
[PE] Fix video overflow clip
Tip revision: 2af196c
MessagePort_onmessage_start.htm
<!DOCTYPE html>
<title>MessageChannel: port.onmessage enables message queue</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.onmessage = t.step_func_done();
  channel.port1.postMessage("ping");
  setTimeout(t.unreached_func(), 100);
});
</script>
back to top