mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
13 lines
341 B
HTML
13 lines
341 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/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>
|