mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
13 lines
326 B
HTML
13 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>
|