mirror of
https://github.com/servo/servo.git
synced 2025-06-30 20:13:39 +01:00
28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
/* 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
<%namespace name="helpers" file="/helpers.mako.rs" />
|
|
<% from data import ALL_SIDES, maybe_moz_logical_alias %>
|
|
<% data.new_style_struct("Margin", inherited=False) %>
|
|
|
|
% for side in ALL_SIDES:
|
|
<%
|
|
spec = "https://drafts.csswg.org/css-box/#propdef-margin-%s" % side[0]
|
|
if side[1]:
|
|
spec = "https://drafts.csswg.org/css-logical-props/#propdef-margin-%s" % side[1]
|
|
%>
|
|
${helpers.predefined_type(
|
|
"margin-%s" % side[0],
|
|
"LengthOrPercentageOrAuto",
|
|
"computed::LengthOrPercentageOrAuto::Length(computed::Length::new(0.))",
|
|
alias=maybe_moz_logical_alias(product, side, "-moz-margin-%s"),
|
|
allow_quirks=not side[1],
|
|
animation_value_type="ComputedValue",
|
|
logical=side[1],
|
|
spec=spec,
|
|
flags="APPLIES_TO_FIRST_LETTER GETCS_NEEDS_LAYOUT_FLUSH",
|
|
allowed_in_page_rule=True,
|
|
servo_restyle_damage="reflow"
|
|
)}
|
|
% endfor
|