| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 text { | 3 text { |
| 4 text-decoration: line-through; | 4 text-decoration: line-through; |
| 5 animation: anim 0s forwards; | 5 animation: anim 0s forwards; |
| 6 } | 6 } |
| 7 @keyframes anim { | 7 @keyframes anim { |
| 8 0% { text-decoration: overline; } | 8 0% { text-decoration: overline; } |
| 9 100% { text-decoration: overline; } | 9 100% { text-decoration: overline; } |
| 10 } | 10 } |
| 11 </style> | 11 </style> |
| 12 <svg height="200" width="200"> | 12 <svg height="200" width="200"> |
| 13 <text fill="blue" font-size="40" x="100" y="100" | 13 <text fill="blue" font-size="40" x="100" y="100" |
| 14 text-decoration="underline">text</text> | 14 text-decoration="underline">text</text> |
| 15 </svg> | 15 </svg> |
| OLD | NEW |