Files
ladybird/Tests/LibWeb/Screenshot/input/svg-gradient-paint-transformation.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

15 lines
504 B
HTML

<!DOCTYPE html>
<link rel="match" href="../expected/svg-gradient-paint-transformation-ref.html" />
<svg height="150" width="150" xmlns="http://www.w3.org/2000/svg">
<style>
.hi {
font: bold 70px sans-serif;
}
</style>
<linearGradient id="gradient">
<stop offset="0%" stop-color="rgba(255, 0, 0, 1)"/>
<stop offset="100%" stop-color="rgba(0, 255, 0, 1)"/>
</linearGradient>
<text x="50" y="50" class="hi" fill="url(#gradient)" transform="rotate(45 50 50)">HI</text>
</svg>