aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/stylesheets/rule_parser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/style/stylesheets/rule_parser.rs')
-rw-r--r--components/style/stylesheets/rule_parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/stylesheets/rule_parser.rs b/components/style/stylesheets/rule_parser.rs
index e96c85c74a9..198b0bdac9a 100644
--- a/components/style/stylesheets/rule_parser.rs
+++ b/components/style/stylesheets/rule_parser.rs
@@ -359,7 +359,7 @@ impl<'a, 'b, 'i> AtRuleParser<'i> for NestedRuleParser<'a, 'b> {
Ok(AtRuleType::WithBlock(AtRulePrelude::FontFace(location)))
},
"font-feature-values" => {
- if !cfg!(feature = "gecko") && !cfg!(feature = "testing") {
+ if !cfg!(feature = "gecko") {
// Support for this rule is not fully implemented in Servo yet.
return Err(StyleParseError::UnsupportedAtRule(name.clone()).into())
}