mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Fix serialisation of computed circle() shapes
This commit is contained in:
parent
0934df77fd
commit
5704e02529
1 changed files with 2 additions and 1 deletions
|
@ -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(")")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue