mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
11 lines
280 B
HTML
11 lines
280 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(done => {
|
|
let work = new Worker("worker-crypto.js");
|
|
work.onmessage = (evt) => {
|
|
println(`Type of self.crypto: ${evt.data}`);
|
|
done();
|
|
};
|
|
});
|
|
</script>
|