summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-parsing/moz-bool-pref.css
blob: 3827bb3f17906b8a1c63b82f9c9f9bb4e6fe198d (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;
}

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

  .disabled {
    background: red;
  }
}