summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimm Bäder <mail@baedert.org>2018-08-27 18:13:01 +0200
committerTimm Bäder <mail@baedert.org>2018-08-27 18:13:01 +0200
commit0082675de858b98a2b5009d46cb916d335f18caf (patch)
treee5395e826fafb89c84f665cc46668dabe7952c1a
parented8e78487982bdde3f1cf5ecb863a2385b3e934c (diff)
downloadgtk+-0082675de858b98a2b5009d46cb916d335f18caf.tar.gz
testoverlaystyleclass: Fix CSS snippet
-rw-r--r--tests/testoverlaystyleclass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testoverlaystyleclass.c b/tests/testoverlaystyleclass.c
index 86437ee020..37a857d265 100644
--- a/tests/testoverlaystyleclass.c
+++ b/tests/testoverlaystyleclass.c
@@ -50,8 +50,8 @@ main (int argc, char *argv[])
provider = gtk_css_provider_new ();
gtk_css_provider_load_from_data (provider,
- "GtkLabel { border: 3px solid black; border-radius: 5px; padding: 2px; }"
- ".top { border-top-style: none; right-radius: 0px; border-top-left-radius: 0px; }"
+ "label { border: 3px solid black; border-radius: 5px; padding: 2px; }"
+ ".top { border-top-style: none; border-top-right-radius: 0px; border-top-left-radius: 0px; }"
".bottom { border-bottom-style: none; border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; }"
".left { border-left-style: none; border-top-left-radius: 0px; border-bottom-left-radius: 0px; }"
".right { border-right-style: none; border-top-right-radius: 0px; border-bottom-right-radius: 0px; }",