Implement parsing/serialization of column-rule-width, column-rule-color and column-span

This commit is contained in:
Nazım Can Altınova 2016-11-21 23:04:43 +03:00
parent a4e26d503a
commit 61431b7fd6
2 changed files with 40 additions and 1 deletions

View file

@ -2244,7 +2244,7 @@ clip-path
</%self:impl_trait>
<%self:impl_trait style_struct_name="Column"
skip_longhands="column-width column-count">
skip_longhands="column-width column-count -moz-column-rule-width">
pub fn set_column_width(&mut self, v: longhands::column_width::computed_value::T) {
match v.0 {
@ -2268,6 +2268,9 @@ clip-path
}
${impl_simple_copy('column_count', 'mColumnCount')}
<% impl_app_units("_moz_column_rule_width", "mColumnRuleWidth", need_clone=True,
round_to_pixels=True) %>
</%self:impl_trait>
<%self:impl_trait style_struct_name="Counters"