mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 01:22:43 +02:00
16 lines
329 B
HTML
16 lines
329 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../../expected/css/duplicate-keyframe-offset-merge-ref.html" />
|
|
<style>
|
|
@keyframes test {
|
|
0% { background-color: green; }
|
|
0% { border: 5px solid red; }
|
|
}
|
|
div {
|
|
animation: test 1s linear paused;
|
|
width: 100px;
|
|
height: 100px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
<div></div>
|