ladybird/Tests/LibWeb/Screenshot/input/svg-gradient-userSpaceOnUse.html
Psychpsyo a5a84159a3 Meta: Add DOCTYPEs to sceenshot tests
input-placeholder-ref was modified because the input box ends up
being slightly wider outside of quirks mode.
2025-03-20 11:50:49 +01:00

12 lines
598 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/svg-gradient-userSpaceOnUse-ref.html" />
<svg width="64" height="64" viewBox="0 0 64 64" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect x="10" y="10" width="44" height="44" fill="url(#a)" />
<defs>
<linearGradient id="a" x1="10" y1="10" x2="10" y2="64" gradientUnits="userSpaceOnUse">
<stop offset="0" stop-color="#f00" />
<stop offset="0.0001" stop-color="#0f0" stop-opacity="0.3" />
<stop offset="1" stop-color="#0f0" stop-opacity="0.7" />
</linearGradient>
</defs>
</svg>