]> Pileus Git - ~andy/gtk/blob - tests/reftests/css-match-siblings.css
Add gtk_icon_info_load_icon_async
[~andy/gtk] / tests / reftests / css-match-siblings.css
1 * + *,
2 #red {
3   color: red
4 }
5
6 * ~ * ~ GtkLabel,
7 #lime {
8   color: lime;
9 }
10
11 * ~ * + GtkLabel ~ *,
12 #blue {
13   color: blue;
14 }
15
16 * + GtkLabel ~ * ~ GtkLabel + *,
17 #purple {
18   color: purple;
19 }