https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 23ecf31d3486c72b4fda870b0a5b5de5340aafb9 authored by Timothy Gu on 19 October 2018, 20:46:11 UTC
document.open(): Align history/URL behavior with spec
Tip revision: 23ecf31
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