Files
gtk/testsuite/css/parser/variables.ref.css
2024-05-10 18:29:48 +04:00

21 lines
244 B
CSS

@keyframes aaaa {
from {
--test: red;
--test2: green;
}
to {
--test: blue;
--test3: cyan;
}
}
label {
background-color: var(--color2, green);
color: var(--color1);
}
:root {
--color1: red;
--color2: initial;
}