Files
ladybird/Tests/LibWeb/Layout/input/svg/standalone.svg
Manuel Zahariev 5d77104c2f LibWeb: Test layout of standalone SVG document: main use case
SVG document with specified width and height attributes is layed out
with this width/height.
2024-12-13 15:02:49 +00:00

8 lines
272 B
XML

<svg viewBox="0 0 32 64" width="128" height="256" xmlns="http://www.w3.org/2000/svg">
<title>white diamond on blue</title>
<rect x="0" y="0" width="32" height="64" fill="blue"/>
<g fill="white">
<path d="M16 0 L32 32 L16 64 L0 32 Z" />
</g>
</svg>