1200568-1.html 261 B

1234567891011121314151617
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <style>
  5. .anim { animation: anim 2s infinite linear }
  6. @keyframes anim { }
  7. </style>
  8. </head>
  9. <body>
  10. <script>
  11. var i = document.createElement('i');
  12. i.setAttribute('class', 'anim');
  13. getComputedStyle(i).display;
  14. </script>
  15. </body>
  16. </html>