mirror of
https://github.com/servo/servo.git
synced 2025-08-23 22:35:33 +01:00
Support -moz-outline-radius-* in geckolib.
This commit is contained in:
parent
3491e16f06
commit
a12493f5fe
2 changed files with 19 additions and 1 deletions
|
@ -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)")}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue