summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/FileAPI/blob/Blob-in-worker.worker.js
blob: a0ca84551dd7cc3fd3a3bfb2850f414787bacac8 (plain)
1
2
3
4
5
6
7
8
9
importScripts("/resources/testharness.js");

promise_test(async () => {
  const data = "TEST";
  const blob = new Blob([data], {type: "text/plain"});
  assert_equals(await blob.text(), data);
}, 'Create Blob in Worker');

done();