Files
gtk/testsuite/css/style/currentcolor2.css
Matthias Clasen e4325e5b2b css: Add more currentcolor style tests
These tests check various situations with inheritance and
currentColor. In particular the caret-color test was not
working correctly before we handled used values explicitly.
2024-06-27 21:03:14 -04:00

12 lines
120 B
CSS

.a {
color: red;
}
.b {
color: color-mix(in srgb, blue, currentcolor);
}
.c {
background-color: currentcolor;
}