gtk/testsuite/css/style/root.css
Alice Mikhaylenko 3ab189404e testsuite: Add css/style/root test
Should have been a part of 76421847a5
but I forgot to commit it.
2024-04-22 21:34:50 +04:00

14 lines
160 B
CSS

:root {
color: red;
}
window {
/* :root has higher priority */
color: blue;
}
label {
/* :root doesn't apply so it's still green */
color: green;
}