ladybird/Tests/LibWeb/Ref/input/svg-non-local-clip-path-display-none.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

13 lines
343 B
HTML

<!doctype html>
<link rel="match" href="../expected/svg-non-local-clip-path-display-none-ref.html" />
<svg>
<clipPath id="jeez" style="display:none">
<rect x="10" y="10" width="50" height="50">
</clipPath>
</svg>
<svg>
<g clip-path="url(#jeez)">
<rect fill="red" width="100" height="100">
</rect>
</g>
</svg>