https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 669e6d2559b0b9403c01cd6f7837c951692738f4 authored by Darren Shen on 03 April 2018, 10:47:38 UTC
[css-typed-om] Add a few keyword properties.
Tip revision: 669e6d2
SharedWorker_blobUrl.html
<!DOCTYPE html>
<title>Shared Worker: Blob URL passed over message port</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
</body>
<script>

promise_test(t => {
  let worker;
  let blob;
  let blobUrl;
  let blobText = 'Blob URL test';

  return new Promise(function(resolve) {
      worker = new SharedWorker('support/WorkerFetchURL.js');
      blob = new Blob([blobText]);
      blobUrl = URL.createObjectURL(blob);
      worker.port.postMessage(blobUrl);
      worker.port.onmessage = resolve;
    })
  .then(e => {
    assert_equals(e.data, 'Worker reply:' + blobText);
    URL.revokeObjectURL(blobUrl);
  });
}, 'Blob URL shared by document on SharedWorker');

</script>
</html>

back to top