tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

use-keyframes.html (702B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>CSS Test: Keyframe animations from the document match in use elements</title>
      4 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      5 <link rel="author" title="Mozilla" href="https://mozilla.org">
      6 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1513920">
      7 <link rel="match" href="use-keyframes-ref.html">
      8 <style>
      9 @keyframes animationname {
     10  from { fill: lime; }
     11  to { fill: lime; }
     12 }
     13 </style>
     14 <svg width="100" height="100" viewBox="0 0 100 100">
     15  <symbol id="symbol">
     16    <rect width="100%" height="100%" fill="red" style="animation: animationname 1s infinite;" />
     17  </symbol>
     18  <use href="#symbol" />
     19 </svg>