style: Remove @supports selector pref. r=firefox-style-system-reviewers,layout-reviewers,boris

We've shipped it for a while.

Differential Revision: https://phabricator.services.mozilla.com/D156469
This commit is contained in:
Emilio Cobos Álvarez 2022-09-06 17:03:20 +00:00 committed by Martin Robinson
parent 98d10f954b
commit 069304c99c

View file

@ -370,13 +370,6 @@ impl ToCss for RawSelector {
impl RawSelector {
/// Tries to evaluate a `selector()` function.
pub fn eval(&self, context: &ParserContext, namespaces: &Namespaces) -> bool {
#[cfg(feature = "gecko")]
{
if !static_prefs::pref!("layout.css.supports-selector.enabled") {
return false;
}
}
let mut input = ParserInput::new(&self.0);
let mut input = Parser::new(&mut input);
input