Revision cb8b86ba657eb03160aed1e528f07a33bbc6ca26 authored by Mike West on 28 August 2015, 05:14:24 UTC, committed by Mike West on 28 August 2015, 05:14:24 UTC
use standard b64 encoding as per spec, not b64url
2 parent s 20eb289 + a18bca8
Raw File
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