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.
12 lines
120 B
CSS
12 lines
120 B
CSS
.a {
|
|
color: red;
|
|
}
|
|
|
|
.b {
|
|
color: color-mix(in srgb, blue, currentcolor);
|
|
}
|
|
|
|
.c {
|
|
background-color: currentcolor;
|
|
}
|