mirror of
https://github.com/servo/servo.git
synced 2025-08-09 07:25:35 +01:00
style: Remove support for XUL grid display values.
Differential Revision: https://phabricator.services.mozilla.com/D53297
This commit is contained in:
parent
178e627500
commit
4ea378a6ae
1 changed files with 0 additions and 18 deletions
|
@ -110,12 +110,6 @@ pub enum DisplayInside {
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
MozBox,
|
MozBox,
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
MozGrid,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
MozGridGroup,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
MozGridLine,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
MozStack,
|
MozStack,
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
MozDeck,
|
MozDeck,
|
||||||
|
@ -233,12 +227,6 @@ impl Display {
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
pub const MozInlineBox: Self = Self::new(DisplayOutside::Inline, DisplayInside::MozBox);
|
pub const MozInlineBox: Self = Self::new(DisplayOutside::Inline, DisplayInside::MozBox);
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
pub const MozGrid: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozGrid);
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
pub const MozGridGroup: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozGridGroup);
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
pub const MozGridLine: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozGridLine);
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
pub const MozStack: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozStack);
|
pub const MozStack: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozStack);
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
pub const MozDeck: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozDeck);
|
pub const MozDeck: Self = Self::new(DisplayOutside::XUL, DisplayInside::MozDeck);
|
||||||
|
@ -615,12 +603,6 @@ impl Parse for Display {
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
"-moz-inline-box" if moz_box_display_values_enabled(context) => Display::MozInlineBox,
|
"-moz-inline-box" if moz_box_display_values_enabled(context) => Display::MozInlineBox,
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
"-moz-grid" if moz_display_values_enabled(context) => Display::MozGrid,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
"-moz-grid-group" if moz_display_values_enabled(context) => Display::MozGridGroup,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
"-moz-grid-line" if moz_display_values_enabled(context) => Display::MozGridLine,
|
|
||||||
#[cfg(feature = "gecko")]
|
|
||||||
"-moz-stack" if moz_display_values_enabled(context) => Display::MozStack,
|
"-moz-stack" if moz_display_values_enabled(context) => Display::MozStack,
|
||||||
#[cfg(feature = "gecko")]
|
#[cfg(feature = "gecko")]
|
||||||
"-moz-deck" if moz_display_values_enabled(context) => Display::MozDeck,
|
"-moz-deck" if moz_display_values_enabled(context) => Display::MozDeck,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue