Add space before keyword for border-image-slice

This commit is contained in:
Xidorn Quan 2017-01-24 16:53:34 +11:00
parent ca6376a714
commit 3c412383fb

View file

@ -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(())
}