mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-03 01:42:54 +00:00
Fixes broken border-radius painting because of lost precision while
converting back and forth between double and CSSPixels.
Fixed example:
```html
<style>
div {
border-radius: 9999px;
background: orange;
padding: 10px;
}
</style><div>huh</div>
```