https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 269cb8ef4b18205f9954d786ef40d47ad713d650 authored by Kent Tamura on 26 October 2016, 01:14:45 UTC
serve: Add empty "aliases" config so that it can be overridden.
Tip revision: 269cb8e
002.html
<!doctype html>
<title>without start()</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.port1.postMessage(1);
  var i = 0;
  channel.port2.addEventListener('message', function() { i++; }, false);
  setTimeout(t.step_func(function() { assert_equals(i, 0); t.done();}), 50);
});
</script>
back to top