Images 💾

Last commit ⭐

commit 6f09a68bafc319ffc2ca8bfa26b17bafa303645f
Author:     Nico Weber <thakis@chromium.org>
AuthorDate: Mon Oct 28 20:51:16 2024 -0400
Commit:     Nico Weber <thakis@chromium.org>
CommitDate: Tue Oct 29 21:42:09 2024 -0400

    LibWeb: Parse stroke-{linejoin,miterlimit} attributes
    
    Similar to LadybirdBrowser/ladybird#1714.
    
    We don't implement the linejoin values `miter-clip` and `arcs`, because
    according to the SVG 2 spec:
    
    > The values miter-clip and arcs of the stroke-linejoin property are at
    > risk. There are no known browser implementations. See issue Github
    > issue w3c/svgwg#592.
    
    Nothing uses this yet. The next step is to change
    SVGPathPaintable::paint() to read `graphics_element.stroke_linejoin()`
    and `graphics_element.stroke_miterlimit()` when painting.
    
    (cherry picked from commit 421cf8d9bf276cff61acdc32dc55d978d37fb671;
    amended to resolve conflict on `height:` in
    getComputedStyle-print-all.txt)