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
This commit is contained in:
Emilio Pozuelo Monfort 2016-07-28 17:12:25 +02:00
parent 0fd69ce99a
commit b9f61e3a8e

View File

@ -3,11 +3,11 @@
}
@keyframes ref {
100% { background-image: linear-gradient(to bottom, lime); }
100% { background-image: linear-gradient(to bottom, lime, lime); }
}
* {
background: linear-gradient(to bottom, red);
background: linear-gradient(to bottom, red, red);
animation: anim steps(5,end) 20s;
}