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.single_keyword(
"border-collapse",
"separate collapse",
engines="gecko servo",
servo_pref="layout.legacy_layout",
gecko_enum_prefix="StyleBorderCollapse",
animation_value_type="discrete",
servo_restyle_damage = "reflow",
affects="layout",
)}
${helpers.single_keyword(
"empty-cells",
"show hide",
engines="gecko servo",
servo_pref="layout.legacy_layout",
gecko_enum_prefix="StyleEmptyCells",
animation_value_type="discrete",
servo_restyle_damage="rebuild_and_reflow",
affects="paint",
)}
${helpers.predefined_type(
"caption-side",
"table::CaptionSide",
"computed::table::CaptionSide::Top",
engines="gecko servo",
servo_pref="layout.legacy_layout",
animation_value_type="discrete",
servo_restyle_damage="rebuild_and_reflow",
affects="layout",
)}
${helpers.predefined_type(
"border-spacing",
"BorderSpacing",
"computed::BorderSpacing::zero()",
engines="gecko servo",
animation_value_type="BorderSpacing",
boxed=True,
servo_restyle_damage="reflow",
affects="layout",
)}