File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ ${helpers.predefined_type(
33
33
"Length",
34
34
"computed::Length::zero()",
35
35
parse_method="parse_non_negative",
36
- engines="gecko",
36
+ engines="gecko servo ",
37
37
spec="https://drafts.csswg.org/css-overflow/#propdef-overflow-clip-margin",
38
38
affects="overflow",
39
39
)}
Original file line number Diff line number Diff line change @@ -1813,7 +1813,6 @@ pub enum Overflow {
1813
1813
Hidden ,
1814
1814
Scroll ,
1815
1815
Auto ,
1816
- #[ cfg( feature = "gecko" ) ]
1817
1816
Clip ,
1818
1817
}
1819
1818
@@ -1829,7 +1828,6 @@ impl Parse for Overflow {
1829
1828
"hidden" => Self :: Hidden ,
1830
1829
"scroll" => Self :: Scroll ,
1831
1830
"auto" | "overlay" => Self :: Auto ,
1832
- #[ cfg( feature = "gecko" ) ]
1833
1831
"clip" => Self :: Clip ,
1834
1832
#[ cfg( feature = "gecko" ) ]
1835
1833
"-moz-hidden-unscrollable" if static_prefs:: pref!( "layout.css.overflow-moz-hidden-unscrollable.enabled" ) => {
@@ -1852,7 +1850,6 @@ impl Overflow {
1852
1850
match * self {
1853
1851
Self :: Hidden | Self :: Scroll | Self :: Auto => * self ,
1854
1852
Self :: Visible => Self :: Auto ,
1855
- #[ cfg( feature = "gecko" ) ]
1856
1853
Self :: Clip => Self :: Hidden ,
1857
1854
}
1858
1855
}
You can’t perform that action at this time.
0 commit comments