gtk/tests/reftests/css-match-siblings.css
Benjamin Otte 15570dd63d reftests: Turns out, green changed color
What used to be "green" is now "lime"
2012-11-14 01:55:28 +01:00

20 lines
184 B
CSS

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