From ad8ac70ae82e5f5c67f0a26a15fec3f33756052b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Mon, 11 Jan 2021 01:57:17 +0000 Subject: [PATCH] style: Remove the moz-focus-outer code. This pseudo does nothing and we successfully removed it in bug 1655859 (firefox 81). Differential Revision: https://phabricator.services.mozilla.com/D101289 --- components/style/gecko/pseudo_element.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/components/style/gecko/pseudo_element.rs b/components/style/gecko/pseudo_element.rs index ed312dc2d8f..55d202c9236 100644 --- a/components/style/gecko/pseudo_element.rs +++ b/components/style/gecko/pseudo_element.rs @@ -161,9 +161,6 @@ impl PseudoElement { /// Whether this pseudo-element is enabled for all content. pub fn enabled_in_content(&self) -> bool { match *self { - PseudoElement::MozFocusOuter => { - static_prefs::pref!("layout.css.moz-focus-outer.enabled") - }, PseudoElement::FileSelectorButton => { static_prefs::pref!("layout.css.file-selector-button.enabled") },