gtk2/testsuite/reftests/css-match-siblings.css
Benjamin Otte 0a440a804f reftests: Fix CSS for various tests
* :nth-child(first) => :first-child
* :nth-child(last) => :last-child
* Add semicolons at end of declarations
* Remove spaces between color functions (shade, alpha, ...) and args
2019-04-12 19:34:29 +02:00

20 lines
173 B
CSS

* + *,
#red {
color: red;
}
* ~ * ~ label,
#lime {
color: lime;
}
* ~ * + label ~ *,
#blue {
color: blue;
}
* + label ~ * ~ label + *,
#purple {
color: purple;
}