Support -moz-outline-radius-* in geckolib.

This commit is contained in:
Cameron McCormack 2016-05-07 16:20:44 +10:00
parent 3491e16f06
commit a12493f5fe
2 changed files with 19 additions and 1 deletions

View file

@ -58,4 +58,11 @@ ${helpers.predefined_type("outline-color", "CSSColor", "::cssparser::Color::Curr
}
</%helpers:longhand>
// The -moz-outline-radius-* properties are non-standard and not on a standards track.
% for corner in ["topleft", "topright", "bottomright", "bottomleft"]:
${helpers.predefined_type("-moz-outline-radius-" + corner, "BorderRadiusSize",
"computed::BorderRadiusSize::zero()",
"parse", products="gecko")}
% endfor
${helpers.predefined_type("outline-offset", "Length", "Au(0)")}