diff options
-rw-r--r-- | components/style/gecko/pseudo_element.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/gecko/pseudo_element.rs b/components/style/gecko/pseudo_element.rs index 93da2b589d0..a501198f28e 100644 --- a/components/style/gecko/pseudo_element.rs +++ b/components/style/gecko/pseudo_element.rs @@ -55,7 +55,7 @@ impl PseudoElement { /// This is not the common thing, but there are some pseudos (namely: /// ::backdrop), that shouldn't inherit from the parent element. pub fn inherits_from_default_values(&self) -> bool { - !matches!(*self, PseudoElement::Backdrop) + matches!(*self, PseudoElement::Backdrop) } /// Gets the canonical index of this eagerly-cascaded pseudo-element. |