mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
b9f61e3a8e
They are deprecated, which causes a warning that makes the test fail. https://bugzilla.gnome.org/show_bug.cgi?id=769004
17 lines
296 B
CSS
17 lines
296 B
CSS
@keyframes anim {
|
|
100% { background-image: url("green-20x20.png"); }
|
|
}
|
|
|
|
@keyframes ref {
|
|
100% { background-image: linear-gradient(to bottom, lime, lime); }
|
|
}
|
|
|
|
* {
|
|
background: linear-gradient(to bottom, red, red);
|
|
animation: anim steps(5,end) 20s;
|
|
}
|
|
|
|
#reference {
|
|
animation-name: ref;
|
|
}
|