Benjamin Maxwell
Benjamin Maxwell
This PR adds the basic plumbing for SVG geometry properties and viewport relative values, then uses them to support percentages in SVG `` element attributes. The same fixes can be...
Previously, we only tiled for a single SME accumulator. This patch updates the lowering_config to make use of all SME accumulators. This is done by increasing the tile size to...
Rather than make path segments virtual and refcounted let's store `Gfx::Path`s as a list of `FloatPoints` and a separate list of commands. This reduces the size of paths, for example,...
Example (from [Base/res/html/misc/border-radius.html](https://github.com/SerenityOS/serenity/blob/master/Base/res/html/misc/border-radius.html)): 
This is already installed and provides a convenient way to convert MLIR to LLVM IR.
I like the library but using it with GCC 9 results in a large amount of warnings about initializer_lists. All the warnings are roughly the same as: ``` In file...
Say you have a template ``"Hello {0} test {1}`` And a vector ``std::vector{"Bill", "Bob"}`` How do you apply the vector to the format string?
Follow up to #17300. There's no point having a 'none' option if you can simply omit the pass from the pipeline.
This controls the fill rule used when rasterizing `` elements.
**Reproducer:** ```html button:hover{ cursor: not-allowed; } Hello World ``` https://github.com/SerenityOS/serenity/assets/11597044/b41e6f1d-dfe9-4df1-9c6a-8da3f1266499 In all other browsers I tested the cursor applies no matter where in the button you hover.