mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +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(")?;
|
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