1
0
Fork 0
firefox/testing/web-platform/tests/IndexedDB/idb_webworkers.htm
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

31 lines
930 B
HTML

<!DOCTYPE html>
<title>IndexedDB inside of a WebWorker </title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/support.js"></script>
<script>
var db, count = 0,
t = async_test();
t.add_cleanup(function() { indexedDB.deleteDatabase('webworker101'); });
t.step(function() {
var worker = new Worker("resources/idbworker.js");
worker.onmessage = t.step_func(function (e) {
switch(count) {
case 0:
assert_equals(e.data, true, 'worker has idb object')
break
case 1:
assert_equals(e.data, "test", "get(1) in worker")
t.done()
}
count++
});
worker.postMessage(1);
})
</script>