Auto merge of #18169 - upsuper:write-css-fix, r=nox

Add whitespace before line number in grid line

This is a followup fix of #18159 where the space was incorrectly removed.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/18169)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-08-21 07:49:11 -05:00 committed by GitHub
commit d4e43d9d76

View file

@ -58,6 +58,7 @@ impl ToCss for GridLine {
}
if let Some(i) = self.line_num {
dest.write_str(" ")?;
i.value().to_css(dest)?;
}