mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-20 02:40:27 +00:00
11 lines
305 B
HTML
11 lines
305 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest((done) => {
|
|
const work = new Worker("worker-importScripts.js");
|
|
work.onmessage = (evt) => {
|
|
println(`importScripts() works as expected: ${evt.data}`);
|
|
done();
|
|
};
|
|
});
|
|
</script>
|