mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
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.
19 lines
698 B
HTML
19 lines
698 B
HTML
<!DOCTYPE html>
|
|
<svg viewBox="0 0 10 10" width="100" height="100"></svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100"></svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100"></svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100"></svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100"></svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100">
|
|
<polygon points="0,0 0,10 10,10" />
|
|
</svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100">
|
|
<polygon points="0,0 0,10 10,10" />
|
|
</svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100">
|
|
<polygon points="0,0 0,10 10,10" />
|
|
</svg>
|
|
<svg viewBox="0 0 10 10" width="100" height="100">
|
|
<polygon points="0,0 0,10 10,10 10,0" />
|
|
</svg>
|