From 127755551d940b7ade68ec7925c727554a0ad1cf Mon Sep 17 00:00:00 2001 From: Tim Nguyen Date: Mon, 3 Feb 2020 09:55:51 +0000 Subject: [PATCH] style: Remove nsGroupBoxFrame (display: -moz-groupbox). Differential Revision: https://phabricator.services.mozilla.com/D61422 --- components/style/values/specified/box.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/components/style/values/specified/box.rs b/components/style/values/specified/box.rs index 2f114b5bb0a..11fbe6afb7b 100644 --- a/components/style/values/specified/box.rs +++ b/components/style/values/specified/box.rs @@ -106,8 +106,6 @@ pub enum DisplayInside { #[cfg(feature = "gecko")] MozDeck, #[cfg(feature = "gecko")] - MozGroupbox, - #[cfg(feature = "gecko")] MozPopup, } @@ -231,8 +229,6 @@ impl Display { #[cfg(feature = "gecko")] pub const MozDeck: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozDeck); #[cfg(feature = "gecko")] - pub const MozGroupbox: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozGroupbox); - #[cfg(feature = "gecko")] pub const MozPopup: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozPopup); /// Make a raw display value from and values. @@ -623,8 +619,6 @@ impl Parse for Display { #[cfg(feature = "gecko")] "-moz-deck" if moz_display_values_enabled(context) => Display::MozDeck, #[cfg(feature = "gecko")] - "-moz-groupbox" if moz_display_values_enabled(context) => Display::MozGroupbox, - #[cfg(feature = "gecko")] "-moz-popup" if moz_display_values_enabled(context) => Display::MozPopup, }) }