diff options
author | Xidorn Quan <me@upsuper.org> | 2017-01-24 16:00:55 +1100 |
---|---|---|
committer | Xidorn Quan <me@upsuper.org> | 2017-01-24 16:00:55 +1100 |
commit | a994e4e96b5aaa053a2d04fd212e85cdaf3a48f3 (patch) | |
tree | b4faa24e69397bb14a057f079470933722ed2301 | |
parent | ca6376a7142640185f21beca4b11011e8367ec91 (diff) | |
download | servo-a994e4e96b5aaa053a2d04fd212e85cdaf3a48f3.tar.gz servo-a994e4e96b5aaa053a2d04fd212e85cdaf3a48f3.zip |
Correct serialization of column-rule shorthand
-rw-r--r-- | components/style/properties/shorthand/column.mako.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/components/style/properties/shorthand/column.mako.rs b/components/style/properties/shorthand/column.mako.rs index 60e1bfc2b78..eac7020da78 100644 --- a/components/style/properties/shorthand/column.mako.rs +++ b/components/style/properties/shorthand/column.mako.rs @@ -101,7 +101,6 @@ impl<'a> LonghandsToSerialize<'a> { fn to_css_declared<W>(&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)); |