ladybird/Tests/LibWeb/Ref/input/svg-use-defined-later.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

12 lines
326 B
HTML

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