gecko-dev/layout/reftests/css-parsing/moz-bool-pref.css
Xidorn Quan 85f0c3af39 Bug 1267890 part 2 - Add test for -moz-bool-pref(). r=emilio
MozReview-Commit-ID: AFTVgwbi9M

--HG--
extra : source : 8344dd1d7234e4950dd62aaed737dea8197c3406
2017-12-08 20:03:34 -06:00

23 lines
256 B
CSS

#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;
}
}