summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-parsing/moz-bool-pref.css
blob: 625906df3426770d92392215a61954afcfff2c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#test {
  width: 100px;
  height: 100px;
}

.enabled {
  background: red;
}

.disabled {
  background: green;
}

@supports -moz-bool-pref("testing.supports.moz-bool-pref") {
  .enabled {
    background: green;
  }

  .disabled {
    background: red;
  }
}