serenity/Tests/LibWeb/Ref/svg-invalid-number-arguments.html
Tim Ledbetter c8b219914e LibWeb: Use ErrorOr to propagate SVG attribute parsing errors
If an unexpected token is encountered when parsing an SVG attribute it
is now immediately propagated with ErrorOr. Previously, some situations
where an unexpected token was encountered could cause a crash.
2024-03-20 09:09:35 +01:00

30 lines
1,007 B
HTML

<!DOCTYPE html>
<link rel="match" href="reference/svg-invalid-number-arguments-ref.html" />
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="-" stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="+" stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="." stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="--" stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="++" stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="+." stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2="-." stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2=".+" stroke="black" />
</svg>
<svg viewBox="0 0 10 10" width="100" height="100">
<line x2="10" y2=".-" stroke="black" />
</svg>