1
0
Fork 0
firefox/layout/reftests/svg/gradient-href-01.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

19 lines
489 B
HTML

<!DOCTYPE html>
<html>
<head>
<base href="/"/>
</head>
<body bgcolor="lime">
<svg width="100%" height="100%">
<defs>
<linearGradient id="b">
<stop offset="0" stop-color="lime"/>
<stop offset="1" stop-color="lime"/>
</linearGradient>
<linearGradient id="a" xlink:href="#b"/>
</defs>
<rect width="100%" height="100%" fill="red"/>
<rect width="100%" height="100%" fill="url(#a)"/>
</svg>
</body>
</html>