gtk2/testsuite/reftests/linear-gradient-transition-to-other.css
Emilio Pozuelo Monfort b9f61e3a8e Don't use one-stop gradients
They are deprecated, which causes a warning that makes
the test fail.

https://bugzilla.gnome.org/show_bug.cgi?id=769004
2016-07-28 17:12:25 +02:00

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;
}