mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
12 lines
448 B
HTML
12 lines
448 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../../expected/svg/drop-shadow-ref.html" />
|
|
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
|
|
<defs>
|
|
<filter id="dropShadow" x="-50%" y="-50%" width="200%" height="200%">
|
|
<feDropShadow dx="20" dy="20" stdDeviation="0" flood-color="green" />
|
|
</filter>
|
|
</defs>
|
|
|
|
<rect x="10" y="10" width="100" height="100" fill="red" filter="url(#dropShadow)" />
|
|
</svg>
|