table.mako.rs (813B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ 4 5 <%namespace name="helpers" file="/helpers.mako.rs" /> 6 7 ${helpers.single_keyword( 8 "table-layout", 9 "auto fixed", 10 engines="gecko servo", 11 gecko_ffi_name="mLayoutStrategy", 12 animation_type="discrete", 13 gecko_enum_prefix="StyleTableLayout", 14 spec="https://drafts.csswg.org/css-tables/#propdef-table-layout", 15 servo_restyle_damage="rebuild_box", 16 affects="layout", 17 )} 18 19 ${helpers.predefined_type( 20 "-x-span", 21 "Integer", 22 "1", 23 engines="gecko", 24 spec="Internal-only (for `<col span>` pres attr)", 25 animation_type="none", 26 enabled_in="", 27 affects="layout", 28 )}