From 22b8699325f0e680fff5793d401a6ed398becf58 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Thu, 26 Jan 2017 09:50:19 -0800 Subject: [PATCH] servo: Merge #15170 - Correct serialization of column-rule shorthand (from upsuper:column-rule); r=Wafflespeanut Source-Repo: https://github.com/servo/servo Source-Revision: 36fc07d9c4ec1abde2c55134cd5fd9688ddb6ed7 --- servo/components/style/properties/shorthand/column.mako.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/servo/components/style/properties/shorthand/column.mako.rs b/servo/components/style/properties/shorthand/column.mako.rs index 60e1bfc2b78d..eac7020da78e 100644 --- a/servo/components/style/properties/shorthand/column.mako.rs +++ b/servo/components/style/properties/shorthand/column.mako.rs @@ -101,7 +101,6 @@ impl<'a> LonghandsToSerialize<'a> { fn to_css_declared(&self, dest: &mut W) -> fmt::Result where W: fmt::Write { let mut need_space = false; - try!(self.column_rule_width.to_css(dest)); if let DeclaredValue::Value(ref width) = *self.column_rule_width { try!(width.to_css(dest));