diff options
author | Razican <razican@protonmail.ch> | 2016-11-28 00:03:20 +0100 |
---|---|---|
committer | Razican <razican@protonmail.ch> | 2016-11-28 00:03:20 +0100 |
commit | 255d497a99a9f93d902d43f2f64b596f11f58d06 (patch) | |
tree | 07825a2f673928488a990df9cdda386bb1bf66bd | |
parent | 99c4821485de30eabc0eb81af9cc5e5102e2f3f6 (diff) | |
download | servo-255d497a99a9f93d902d43f2f64b596f11f58d06.tar.gz servo-255d497a99a9f93d902d43f2f64b596f11f58d06.zip |
Implemented colum-rule-style
-rw-r--r-- | components/style/properties/longhand/column.mako.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/components/style/properties/longhand/column.mako.rs b/components/style/properties/longhand/column.mako.rs index 3df4d8e2526..04dd9c85cb8 100644 --- a/components/style/properties/longhand/column.mako.rs +++ b/components/style/properties/longhand/column.mako.rs @@ -288,3 +288,9 @@ ${helpers.predefined_type("-moz-column-rule-color", "CSSColor", // https://drafts.csswg.org/css-multicol-1/#column-span ${helpers.single_keyword("column-span", "none all", products="none", animatable=False)} + +${helpers.single_keyword("column-rule-style", + "none hidden dotted dashed solid double groove ridge inset outset", + products="gecko", + gecko_constant_prefix="NS_STYLE_BORDER_STYLE", + animatable=False)} |