tor-browser

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

animation-duration-infinite.html (667B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Setting 'animation-duration' to an infinite value should not hang</title>
      5 <link rel="author" title="Antoine Quint" href="mailto:graouts@webkit.org">
      6 <link rel="help" href="https://bugs.webkit.org/show_bug.cgi?id=297596">
      7 <link rel="match" href="animation-duration-infinite-ref.html">
      8 <meta name="assert" content="Setting 'animation-duration' to an infinite value should not hang">
      9 <style>
     10 
     11 div {
     12  width: 100px;
     13  height: 100px;
     14  background-color: black;
     15 
     16  animation-name: slide;
     17  animation-duration: calc(infinity * 1s);
     18 }
     19 
     20 @keyframes slide {
     21  to { margin-left: 100px }
     22 }
     23 
     24 </style>
     25 </head>
     26 <body>
     27 <div></div>
     28 </body>
     29 </html>