style: Implement the inset shorthand.

Differential Revision: https://phabricator.services.mozilla.com/D16704
This commit is contained in:
Emilio Cobos Álvarez 2019-01-20 16:48:19 +01:00
parent 07d53e32c4
commit 0488a3d3d3

View file

@ -763,6 +763,15 @@
}
</%helpers:shorthand>
// See https://github.com/w3c/csswg-drafts/issues/3525 for the quirks stuff.
${helpers.four_sides_shorthand(
"inset",
"%s",
"specified::LengthPercentageOrAuto::parse",
spec="https://drafts.csswg.org/css-logical/#propdef-inset",
allow_quirks=False,
)}
% for axis in ["block", "inline"]:
<%
spec = "https://drafts.csswg.org/css-logical/#propdef-inset-%s" % axis