diff options
author | Benjamin Otte <otte@redhat.com> | 2015-07-21 02:27:45 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2015-07-21 02:28:53 +0200 |
commit | 99d4ec267685f9aab0bdd172a6c3c7990db31524 (patch) | |
tree | ee615d0437101a42006328a597a0fcf3d282e4e1 /testsuite/reftests | |
parent | ceab99ff2ffcfd3f3e9644026ea9d4692cfbd11c (diff) | |
download | gtk+-99d4ec267685f9aab0bdd172a6c3c7990db31524.tar.gz |
reftests: Fix underlines in link-coloring reftest
Underlines now need to be manually specified in CSS since GTK got
text-decoration support.
Diffstat (limited to 'testsuite/reftests')
-rw-r--r-- | testsuite/reftests/link-coloring.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/reftests/link-coloring.css b/testsuite/reftests/link-coloring.css index 0c4c13df81..a4ce28cd40 100644 --- a/testsuite/reftests/link-coloring.css +++ b/testsuite/reftests/link-coloring.css @@ -8,6 +8,10 @@ color: purple; } +:link,*, :visited * { + text-decoration: underline; +} + /* should never happen */ :link:visited { color: red; |