Sam Atkins
Sam Atkins
We don't really need to implement it for this, just stop assuming we can resolve calculated values in `expand_unresolved_values()`. That method is really for getting `var()` and `attr()` resolved so...
@aduerig I think what is supposed to happen is: - Perform the fetch, which succeeds because it's a data URL. - Enter step 3.9 (Handler) - Hit the "Otherwise" case...
Oh wait! There are a couple of notes about how the "otherwise" case should trigger if the resource type is unknown. That sounds like something we might not be doing...
Even smaller repro: ```html Well hello friends! ``` Inline nodes have their own painting code, so previously in #10146 I had to manually implement styling that already worked on block...
Thanks for the report! To simplify it a bit, we actually just don't support `text-align: start`. The current supported values are here: https://github.com/SerenityOS/serenity/blob/c7c4987967fc7081ade8fab38b37b0405cea9743/Userland/Libraries/LibWeb/CSS/Enums.json#L364-L372 So we're missing `start`, `end`, `match-parent` and...
Hi there! If you could split the LibGfx changes into their own commit before the LibWeb commit, that would be appreciated.
Hi there! Welcome to the project. :^) What you've done here looks well put together, so good job on that, but I'm not sure it's a direction we want to...
> This seems like a very small slice of things to call "support for CSS direction"(?) Yeah there are a few properties (and values like `start`/`end`) that depend on the...
OK, just taken a quick look at this and some logging has told me that the problem is we have `background: var(--numberBoxBackground)` there. There's no way of applying that to...
:thinking: An extra wrinkle with persistence is that we probably want it to work if you have multiple puter.com tabs open at once, so changing the layout on one updates...