Auto merge of #17216 - nox:fix-computed-circle-serialisation, r=canaltinova

Fix serialisation of computed circle() shapes

<!-- 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/17216)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-06-07 17:31:17 -07:00 committed by GitHub
commit 1ea4a44fad

View file

@ -41,7 +41,8 @@ impl ToCss for Circle {
dest.write_str("circle(")?;
self.radius.to_css(dest)?;
dest.write_str(" at ")?;
self.position.to_css(dest)
self.position.to_css(dest)?;
dest.write_str(")")
}
}