gecko-dev/layout/reftests/css-parsing/moz-bool-pref.css

23 строки
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;
}
}