mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
LibWeb: Add tests for animating unresolved properties
This commit is contained in:
parent
0d70311c90
commit
6bf1a30bf5
Notes:
sideshowbarker
2024-07-17 00:49:59 +09:00
Author: https://github.com/mattco98
Commit: 6bf1a30bf5
Pull-request: https://github.com/SerenityOS/serenity/pull/23622
Issue: https://github.com/SerenityOS/serenity/issues/23609
4 changed files with 51 additions and 0 deletions
|
@ -0,0 +1,26 @@
|
|||
<!-- 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>
|
Loading…
Add table
Add a link
Reference in a new issue