mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-12 03:01:04 +00:00
11 lines
320 B
HTML
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>
|