mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Auto merge of #19584 - emilio:remove-grid-pref, r=mats
style: Remove the grid pref. Bug: 1398492 Reviewed-by: mats MozReview-Commit-ID: 6Qez8NE8oze <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/19584) <!-- Reviewable:end -->
This commit is contained in:
commit
1501a41704
2 changed files with 0 additions and 11 deletions
|
@ -257,7 +257,6 @@ ${helpers.predefined_type("object-position",
|
||||||
"computed::NonNegativeLengthOrPercentage::zero()",
|
"computed::NonNegativeLengthOrPercentage::zero()",
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-%s-gap" % kind,
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-%s-gap" % kind,
|
||||||
animation_value_type="NonNegativeLengthOrPercentage",
|
animation_value_type="NonNegativeLengthOrPercentage",
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
products="gecko")}
|
products="gecko")}
|
||||||
|
|
||||||
% for range in ["start", "end"]:
|
% for range in ["start", "end"]:
|
||||||
|
@ -267,7 +266,6 @@ ${helpers.predefined_type("object-position",
|
||||||
animation_value_type="discrete",
|
animation_value_type="discrete",
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-%s-%s" % (kind, range),
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-%s-%s" % (kind, range),
|
||||||
products="gecko",
|
products="gecko",
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
boxed=True)}
|
boxed=True)}
|
||||||
% endfor
|
% endfor
|
||||||
|
|
||||||
|
@ -279,7 +277,6 @@ ${helpers.predefined_type("object-position",
|
||||||
animation_value_type="discrete",
|
animation_value_type="discrete",
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-auto-%ss" % kind,
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-auto-%ss" % kind,
|
||||||
products="gecko",
|
products="gecko",
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
boxed=True)}
|
boxed=True)}
|
||||||
|
|
||||||
${helpers.predefined_type("grid-template-%ss" % kind,
|
${helpers.predefined_type("grid-template-%ss" % kind,
|
||||||
|
@ -288,7 +285,6 @@ ${helpers.predefined_type("object-position",
|
||||||
products="gecko",
|
products="gecko",
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template-%ss" % kind,
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template-%ss" % kind,
|
||||||
boxed=True,
|
boxed=True,
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
animation_value_type="discrete")}
|
animation_value_type="discrete")}
|
||||||
|
|
||||||
% endfor
|
% endfor
|
||||||
|
@ -298,7 +294,6 @@ ${helpers.predefined_type("grid-auto-flow",
|
||||||
initial_value="computed::GridAutoFlow::row()",
|
initial_value="computed::GridAutoFlow::row()",
|
||||||
products="gecko",
|
products="gecko",
|
||||||
animation_value_type="discrete",
|
animation_value_type="discrete",
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-auto-flow")}
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-auto-flow")}
|
||||||
|
|
||||||
${helpers.predefined_type("grid-template-areas",
|
${helpers.predefined_type("grid-template-areas",
|
||||||
|
@ -306,6 +301,5 @@ ${helpers.predefined_type("grid-template-areas",
|
||||||
initial_value="computed::GridTemplateAreas::none()",
|
initial_value="computed::GridTemplateAreas::none()",
|
||||||
products="gecko",
|
products="gecko",
|
||||||
animation_value_type="discrete",
|
animation_value_type="discrete",
|
||||||
gecko_pref="layout.css.grid.enabled",
|
|
||||||
boxed=True,
|
boxed=True,
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template-areas")}
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template-areas")}
|
||||||
|
|
|
@ -103,7 +103,6 @@
|
||||||
</%helpers:shorthand>
|
</%helpers:shorthand>
|
||||||
|
|
||||||
<%helpers:shorthand name="grid-gap" sub_properties="grid-row-gap grid-column-gap"
|
<%helpers:shorthand name="grid-gap" sub_properties="grid-row-gap grid-column-gap"
|
||||||
gecko_pref="layout.css.grid.enabled"
|
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-gap"
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-gap"
|
||||||
products="gecko">
|
products="gecko">
|
||||||
use properties::longhands::{grid_row_gap, grid_column_gap};
|
use properties::longhands::{grid_row_gap, grid_column_gap};
|
||||||
|
@ -135,7 +134,6 @@
|
||||||
|
|
||||||
% for kind in ["row", "column"]:
|
% for kind in ["row", "column"]:
|
||||||
<%helpers:shorthand name="grid-${kind}" sub_properties="grid-${kind}-start grid-${kind}-end"
|
<%helpers:shorthand name="grid-${kind}" sub_properties="grid-${kind}-start grid-${kind}-end"
|
||||||
gecko_pref="layout.css.grid.enabled"
|
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-${kind}"
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-${kind}"
|
||||||
products="gecko">
|
products="gecko">
|
||||||
use values::specified::GridLine;
|
use values::specified::GridLine;
|
||||||
|
@ -175,7 +173,6 @@
|
||||||
% endfor
|
% endfor
|
||||||
|
|
||||||
<%helpers:shorthand name="grid-area"
|
<%helpers:shorthand name="grid-area"
|
||||||
gecko_pref="layout.css.grid.enabled"
|
|
||||||
sub_properties="grid-row-start grid-row-end grid-column-start grid-column-end"
|
sub_properties="grid-row-start grid-row-end grid-column-start grid-column-end"
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-area"
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-area"
|
||||||
products="gecko">
|
products="gecko">
|
||||||
|
@ -241,7 +238,6 @@
|
||||||
</%helpers:shorthand>
|
</%helpers:shorthand>
|
||||||
|
|
||||||
<%helpers:shorthand name="grid-template"
|
<%helpers:shorthand name="grid-template"
|
||||||
gecko_pref="layout.css.grid.enabled"
|
|
||||||
sub_properties="grid-template-rows grid-template-columns grid-template-areas"
|
sub_properties="grid-template-rows grid-template-columns grid-template-areas"
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template"
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid-template"
|
||||||
products="gecko">
|
products="gecko">
|
||||||
|
@ -463,7 +459,6 @@
|
||||||
</%helpers:shorthand>
|
</%helpers:shorthand>
|
||||||
|
|
||||||
<%helpers:shorthand name="grid"
|
<%helpers:shorthand name="grid"
|
||||||
gecko_pref="layout.css.grid.enabled"
|
|
||||||
sub_properties="grid-template-rows grid-template-columns grid-template-areas
|
sub_properties="grid-template-rows grid-template-columns grid-template-areas
|
||||||
grid-auto-rows grid-auto-columns grid-auto-flow"
|
grid-auto-rows grid-auto-columns grid-auto-flow"
|
||||||
spec="https://drafts.csswg.org/css-grid/#propdef-grid"
|
spec="https://drafts.csswg.org/css-grid/#propdef-grid"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue