mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-27 11:19:36 +00:00
15 lines
341 B
HTML
15 lines
341 B
HTML
<!DOCTYPE html>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest((done) => {
|
|
requestAnimationFrame(() => {
|
|
println("Collect garbage");
|
|
internals.gc();
|
|
});
|
|
|
|
requestAnimationFrame(() => {
|
|
println("PASS! (Didn't crash)");
|
|
done();
|
|
});
|
|
});
|
|
</script>
|