https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 59747ef8edab507c19e871c05ace8e70c747f01c authored by James Graham on 09 May 2015, 00:48:22 UTC
fixup! fixup! Replace usage of setTimeout with step_timeout.
Tip revision: 59747ef
postMessage_DataCloneErr.htm
<!DOCTYPE html>
<title> postMessage() with WorkerNavigator </title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function(t) {
  var worker = new Worker("./support/WorkerDataCloneErr.js");
  worker.onmessage = t.step_func_done(function(e) {
    assert_equals(e.data, "Pass");
  });
});
</script>
back to top