summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-enabled/input/style.css
blob: 3846239d0d0d8d6cee499bf55c36a2a69d8bec83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
.ref {
  background-color: green;
}

.enabled {
  background-color: red;
}

:enabled.enabled {
  background-color: green;
}

.disabled {
  background-color: green;
}

:enabled.disabled {
  background-color: red;
}