summaryrefslogtreecommitdiff
path: root/tests/reftests/css-match-siblings.css
blob: baf2e7dab369579b653c4d34f6561bfd335f3060 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
* + *,
#red {
  color: red
}

* ~ * ~ GtkLabel,
#lime {
  color: lime;
}

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

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