From 3c412383fbe0e7e62ce12f98bdeedd226eb20188 Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Tue, 24 Jan 2017 16:53:34 +1100 Subject: [PATCH] Add space before keyword for border-image-slice --- components/style/properties/longhand/border.mako.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/style/properties/longhand/border.mako.rs b/components/style/properties/longhand/border.mako.rs index 27cd5328dd8..8adc4b0be8d 100644 --- a/components/style/properties/longhand/border.mako.rs +++ b/components/style/properties/longhand/border.mako.rs @@ -598,7 +598,7 @@ ${helpers.single_keyword("-moz-float-edge", "content-box margin-box", try!(self.corners[3].to_css(dest)); if self.fill { - try!(dest.write_str("fill")); + try!(dest.write_str(" fill")); } Ok(()) } @@ -612,7 +612,7 @@ ${helpers.single_keyword("-moz-float-edge", "content-box margin-box", } if self.fill { - try!(dest.write_str("fill")); + try!(dest.write_str(" fill")); } Ok(()) }