From b9f61e3a8e8040bd7719c4d85b6e623ee75420a3 Mon Sep 17 00:00:00 2001 From: Emilio Pozuelo Monfort Date: Thu, 28 Jul 2016 17:12:25 +0200 Subject: [PATCH] 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 --- testsuite/reftests/linear-gradient-transition-to-other.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testsuite/reftests/linear-gradient-transition-to-other.css b/testsuite/reftests/linear-gradient-transition-to-other.css index f8bbb866d0..65fdb8d09a 100644 --- a/testsuite/reftests/linear-gradient-transition-to-other.css +++ b/testsuite/reftests/linear-gradient-transition-to-other.css @@ -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; }