ladybird/Tests/LibWeb/Screenshot/svg-non-local-clip-path.html
Aliaksandr Kalenik 9ab25c47a4 Tests: Transform some ref tests into screenshot tests
These test work with LibGfx painter but won't longer work after
switching to Skia, because it produces slightly different antialiasing,
rounding in color blending, etc.
2024-07-21 10:36:17 +02:00

14 lines
307 B
HTML

<!doctype html>
<link rel="match" href="reference/svg-non-local-clip-path-ref.html" />
<svg>
<clipPath id="jeez">
<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>