Files
Kmake/test/fixtures/wpt/FileAPI/blob/Blob-in-worker.worker.js

10 lines
230 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
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();