mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
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:
commit
1ea4a44fad
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,8 @@ impl ToCss for Circle {
|
||||||
dest.write_str("circle(")?;
|
dest.write_str("circle(")?;
|
||||||
self.radius.to_css(dest)?;
|
self.radius.to_css(dest)?;
|
||||||
dest.write_str(" at ")?;
|
dest.write_str(" at ")?;
|
||||||
self.position.to_css(dest)
|
self.position.to_css(dest)?;
|
||||||
|
dest.write_str(")")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue