aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXidorn Quan <me@upsuper.org>2017-01-24 16:53:34 +1100
committerXidorn Quan <me@upsuper.org>2017-01-24 16:53:34 +1100
commit3c412383fbe0e7e62ce12f98bdeedd226eb20188 (patch)
treec2df8aa72735914a5514fe6f1119f9f129663419
parentca6376a7142640185f21beca4b11011e8367ec91 (diff)
downloadservo-3c412383fbe0e7e62ce12f98bdeedd226eb20188.tar.gz
servo-3c412383fbe0e7e62ce12f98bdeedd226eb20188.zip
Add space before keyword for border-image-slice
-rw-r--r--components/style/properties/longhand/border.mako.rs4
1 files 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(())
}