ladybird/Tests/LibWeb/Text/input/Worker/Worker-performance.html
2025-03-20 11:50:49 +01:00

11 lines
320 B
HTML

<!DOCTYPE html>
<script src="../include.js"></script>
<script>
asyncTest(done => {
let work = new Worker("worker-performance.js");
work.onmessage = (evt) => {
println(`performance global object is available: ${JSON.stringify(evt.data)}`);
done();
};
});
</script>