1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:17:44 +00:00

LibWeb: Support implicit lineto commands after moveto in SVG paths

Per SVG2, any coordinate pairs following a moveto command should be
treated as implicit lineto commands with the same absoluteness as the
moveto command.
This commit is contained in:
Andreas Kling 2023-04-17 12:34:00 +02:00 committed by Jelle Raaijmakers
parent 8d0985ef01
commit 7f79208759
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,7 @@
Viewport <#document> at (0,0) content-size 800x600 children: not-inline
BlockContainer <html> at (0,0) content-size 800x116 children: not-inline
BlockContainer <body> at (8,8) content-size 784x100 children: inline
line 0 width: 100, height: 100, bottom: 100, baseline: 60
frag 0 from SVGSVGBox start: 0, length: 0, rect: [8,8 100x100]
SVGSVGBox <svg> at (8,8) content-size 100x100 children: not-inline
SVGGeometryBox <path> at (28,28) content-size 60x60 children: not-inline

View file

@ -0,0 +1,6 @@
<!DOCTYPE html><html><body><svg
xmlns="http://www.w3.org/2000/svg"
width="100"
height="100"
viewBox="0 0 10 10"
><path d="M 2 2 5 8 8 2 z"></path></svg>