Pavel Panchekha

Results 75 comments of Pavel Panchekha

I tried a whole lot of seeds and the `x + (1 - x)` problem hasn't re-appeared. The better cost estimates are now available via the "beta" Platforms feature, so...

This was fixed (just confirmed), I believe in #746.

I seem to have a similar error in a case with `AntiAlias`. The Python code is the following: ``` path = skia.Path().moveTo(self.x1, self.y1).lineTo(self.x2, self.y2) paint = skia.Paint(Color=parse_color(self.color)) paint.setStyle(skia.Paint.kStroke_Style) paint.setStrokeWidth(self.thickness) canvas.drawPath(path,...

I don't get any shader errors on 87.6 with Python 3.12. I do still get that mysterious segfault I told you about, HinTak, so probably that's not Skia-related. But it...

Random guess... Does putting the parent in absolute position trigger shrink to fit layout? Then the width: 100% doesn't resolve correctly because the parent width is not set yet? So...

Thanks @awesomekling, we'll try that. It seems to make sense, input elements usually are rendered as replaced content with natural width and height on other OSes. Buttons and images are...

I tested this too: ``` Hello ``` In this case there is the bug. So my guess is that the issue occurs only for block boxes (the ``) that contain...

From experimenting a bit, the bug only seems to occur when the blur radius, spread radius, and font-height match up in some strange combination. I think figuring out the dependence...

I agree, `(factorize 0)` should raise an error or return `((0 1))` or something else but definitely not return `'()`. The easiest fix is definitely to change the domain to...