From d10f851201edd4c0a74d4285d0363758ba8ba52d Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 3 Jan 2012 05:06:50 +0100 Subject: [PATCH] reftests: Fix a bunch of invalid CSS cases use 'transparent' instead of 'none' for colors. --- tests/reftests/background-area.css | 2 +- tests/reftests/no-colors.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/reftests/background-area.css b/tests/reftests/background-area.css index 0cb009467a..209f58673f 100644 --- a/tests/reftests/background-area.css +++ b/tests/reftests/background-area.css @@ -47,7 +47,7 @@ GtkButton { #reference3 { border-color: rgb(153,102,0); - background-color: none; + background-color: transparent; padding: 5; } diff --git a/tests/reftests/no-colors.css b/tests/reftests/no-colors.css index da899757f2..6091b9fabf 100644 --- a/tests/reftests/no-colors.css +++ b/tests/reftests/no-colors.css @@ -1,7 +1,7 @@ * { - background-color: none; - color: none; - border-color: none; + background-color: transparent; + color: transparent; + border-color: transparent; border-style: solid; border-width: 1; }