mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-03 07:32:00 +00:00
26 lines
495 B
HTML
26 lines
495 B
HTML
<!-- https://github.com/SerenityOS/serenity/issues/23609 -->
|
|
<style>
|
|
:root {
|
|
--accent: #00f;
|
|
}
|
|
|
|
@keyframes myMove {
|
|
0% {
|
|
border-top: 2px solid var(--accent);
|
|
}
|
|
}
|
|
|
|
div {
|
|
animation: myMove 1s infinite;
|
|
}
|
|
</style>
|
|
<div></div>
|
|
<script src="../include.js"></script>
|
|
<script>
|
|
asyncTest(done => {
|
|
requestAnimationFrame(() => {
|
|
println("PASS! (Didn't crash)");
|
|
done();
|
|
});
|
|
});
|
|
</script>
|