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

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

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

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