From 693c2f0d27043361d5a6f93da2bedde4e5e0e9bb Mon Sep 17 00:00:00 2001 From: Oriol Brufau Date: Tue, 16 May 2023 23:15:26 +0200 Subject: [PATCH] style: Remove -moz-proton-infobars media query support Differential Revision: https://phabricator.services.mozilla.com/D110963 --- components/style/gecko/media_features.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/style/gecko/media_features.rs b/components/style/gecko/media_features.rs index a3000f46bb4..287ab6a1797 100644 --- a/components/style/gecko/media_features.rs +++ b/components/style/gecko/media_features.rs @@ -624,7 +624,7 @@ macro_rules! bool_pref_feature { /// to support new types in these entries and (2) ensuring that either /// nsPresContext::MediaFeatureValuesChanged is called when the value that /// would be returned by the evaluator function could change. -pub static MEDIA_FEATURES: [MediaFeatureDescription; 62] = [ +pub static MEDIA_FEATURES: [MediaFeatureDescription; 61] = [ feature!( atom!("width"), AllowsRanges::Yes, @@ -863,6 +863,5 @@ pub static MEDIA_FEATURES: [MediaFeatureDescription; 62] = [ bool_pref_feature!(atom!("-moz-proton-modals"), "browser.proton.modals.enabled"), bool_pref_feature!(atom!("-moz-proton-contextmenus"), "browser.proton.contextmenus.enabled"), bool_pref_feature!(atom!("-moz-proton-doorhangers"), "browser.proton.doorhangers.enabled"), - bool_pref_feature!(atom!("-moz-proton-infobars"), "browser.proton.infobars.enabled"), bool_pref_feature!(atom!("-moz-proton-places-tooltip"), "browser.proton.places-tooltip.enabled"), ];