tests: add a CSS test for currentColor in border-color

This commit is contained in:
Cosimo Cecchi 2012-01-11 17:37:21 -05:00
parent 09b4658c06
commit d994ace41e
3 changed files with 11 additions and 0 deletions

View File

@ -159,6 +159,8 @@ EXTRA_DIST += \
border.css \
border.errors \
border.ref.css \
border-color-currentcolor.css \
border-color-currentcolor.ref.css \
border-radius.css \
border-radius.errors \
border-radius.ref.css \

View File

@ -0,0 +1,3 @@
* {
border-color: currentColor;
}

View File

@ -0,0 +1,6 @@
* {
border-bottom-color: currentColor;
border-left-color: currentColor;
border-right-color: currentColor;
border-top-color: currentColor;
}