mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-21 03:10:26 +00:00
10 lines
304 B
HTML
10 lines
304 B
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>
|