blob: 8cd770a6578e0fc39a832773454347d9ac66efbb [file] [log] [blame]
<!doctype html>
<style>
@keyframes blur-animation {
from {
filter: blur(10px);
} to {
filter: blur(10px);
}
}
#root, #child {
display: block;
animation: blur-animation 1s infinite;
}
</style>
<svg id="root" height="100">
<rect fill="blue" x="0" y="0" height="100" width="100" />
</svg>
<svg>
<rect id="child" fill="blue" x="0" y="0" height="100" width="100" />
</svg>