mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-03 08:52:54 +00:00
Now each test type has the same directories: - input - expected - data Also, tests can be in subdirectories within ./input.
13 lines
343 B
HTML
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>
|