Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
<%namespace name="helpers" file="/helpers.mako.rs" />
${helpers.predefined_type(
"column-width",
"length::NonNegativeLengthOrAuto",
"computed::length::NonNegativeLengthOrAuto::auto()",
engines="gecko servo",
initial_specified_value="specified::length::NonNegativeLengthOrAuto::auto()",
animation_value_type="NonNegativeLengthOrAuto",
servo_pref="layout.columns.enabled",
servo_restyle_damage="rebuild_and_reflow",
affects="layout",
)}
${helpers.predefined_type(
"column-count",
"ColumnCount",
"computed::ColumnCount::auto()",
engines="gecko servo",
initial_specified_value="specified::ColumnCount::auto()",
servo_pref="layout.columns.enabled",
animation_value_type="AnimatedColumnCount",
servo_restyle_damage="rebuild_and_reflow",
affects="layout",
)}
${helpers.single_keyword(
"column-fill",
"balance auto",
engines="gecko",
animation_value_type="discrete",
gecko_enum_prefix="StyleColumnFill",
affects="layout",
)}
${helpers.predefined_type(
"column-rule-width",
"BorderSideWidth",
"app_units::Au::from_px(3)",
engines="gecko",
initial_specified_value="specified::BorderSideWidth::medium()",
animation_value_type="NonNegativeLength",
affects="layout",
)}
${helpers.predefined_type(
"column-rule-color",
"Color",
"computed_value::T::currentcolor()",
engines="gecko",
initial_specified_value="specified::Color::currentcolor()",
animation_value_type="AnimatedColor",
ignored_when_colors_disabled=True,
affects="paint",
)}
${helpers.single_keyword(
"column-span",
"none all",
engines="gecko servo",
servo_pref="layout.columns.enabled",
animation_value_type="discrete",
gecko_enum_prefix="StyleColumnSpan",
affects="layout",
)}
${helpers.predefined_type(
"column-rule-style",
"BorderStyle",
"computed::BorderStyle::None",
engines="gecko",
initial_specified_value="specified::BorderStyle::None",
animation_value_type="discrete",
affects="paint",
)}