mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-07 17:41:54 +00:00
23 lines
537 B
HTML
23 lines
537 B
HTML
<!-- https://github.com/SerenityOS/serenity/issues/23609 -->
|
|
<style>
|
|
:root {
|
|
--accent: #00f;
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script src="../../include.js"></script>
|
|
<script>
|
|
asyncTest(done => {
|
|
document.getElementById("foo").animate({
|
|
borderTop: ['2px solid var(--accent)'],
|
|
}, {
|
|
duration: 1000,
|
|
iterations: Infinity,
|
|
});
|
|
|
|
requestAnimationFrame(() => {
|
|
println("PASS! (Didn't crash)");
|
|
done();
|
|
});
|
|
});
|
|
</script>
|