ladybird/Tests/LibWeb/Ref/expected/svg-use-defined-earlier.html
Sam Atkins b7efb61fbe Tests/LibWeb: Restructure Ref and Screenshot test dirs to match others
Now each test type has the same directories:
- input
- expected
- data

Also, tests can be in subdirectories within ./input.
2024-11-05 14:02:07 +00:00

11 lines
261 B
HTML

<!doctype html>
<svg style="display: none">
<symbol id="earlier-reference">
<rect x="0" y="0" width="64" height="64" fill="green" />
</symbol>
</svg>
<div>
<svg width="100" height="100">
<use xlink:href="#earlier-reference"></use>
</svg>
</div>