Remove col_gap_type variable

This commit is contained in:
Ramshell 2018-04-06 12:23:25 -03:00
parent 20e8922433
commit 14a0e74ca3

View file

@ -30,16 +30,14 @@ ${helpers.predefined_type(
)} )}
<%
col_gap_type = "NonNegativeLengthOrPercentageOrNormal"
%>
${helpers.predefined_type( ${helpers.predefined_type(
"column-gap", "column-gap",
"length::%s" % col_gap_type, "length::NonNegativeLengthOrPercentageOrNormal",
"Either::Second(Normal)", "Either::Second(Normal)",
extra_prefixes="moz", extra_prefixes="moz",
servo_pref="layout.columns.enabled", servo_pref="layout.columns.enabled",
animation_value_type=col_gap_type, animation_value_type="NonNegativeLengthOrPercentageOrNormal",
spec="https://drafts.csswg.org/css-multicol/#propdef-column-gap", spec="https://drafts.csswg.org/css-multicol/#propdef-column-gap",
servo_restyle_damage = "reflow", servo_restyle_damage = "reflow",
)} )}