Localisation updates from https://translatewiki.net.
[mediawiki.git] / tests / phpunit / data / media / css-animated.svg
blobafbb6c56c600f9ebe3369a9dd1dd3ee1a9508f0e
1 <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">
2 <defs>
3 <style>
4 @keyframes spin {
5 0% { transform: rotate(0deg); }
6 100% { transform: rotate(360deg); }
8 svg {
9 animation: spin 5s linear infinite;
11 .acircle {
12 opacity: 0.65;
14 </style>
15 </defs>
16 <circle class="acircle" cx="40" cy="40" r="30" stroke="red" fill="none"/>
17 </svg>