tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Blob-in-worker.worker.js (230B)


      1 importScripts("/resources/testharness.js");
      2 
      3 promise_test(async () => {
      4  const data = "TEST";
      5  const blob = new Blob([data], {type: "text/plain"});
      6  assert_equals(await blob.text(), data);
      7 }, 'Create Blob in Worker');
      8 
      9 done();