-added parsing and serialization for grid-{row,column}-gap

updated missing products='gecko' in grid-row-gap and grip-column-gap
This commit is contained in:
hiei23 2017-02-08 21:23:04 -05:00 committed by si hua
parent 9c5abebd47
commit 0701227906

View file

@ -220,3 +220,17 @@ ${helpers.single_keyword("object-fit", "fill contain cover none scale-down",
spec="https://drafts.csswg.org/css-grid/#propdef-%s" % longhand, spec="https://drafts.csswg.org/css-grid/#propdef-%s" % longhand,
products="gecko")} products="gecko")}
% endfor % endfor
${helpers.predefined_type("grid-row-gap",
"LengthOrPercentage",
"computed::LengthOrPercentage::Length(Au(0))",
spec="https://drafts.csswg.org/css-grid/#propdef-grid-row-gap",
animatable=True,
products="gecko")}
${helpers.predefined_type("grid-column-gap",
"LengthOrPercentage",
"computed::LengthOrPercentage::Length(Au(0))",
spec="https://drafts.csswg.org/css-grid/#propdef-grid-column-gap",
animatable=True,
products="gecko")}