mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
c8b219914e
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.
29 lines
1,007 B
HTML
29 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>
|