tor-browser

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

1375812-1.html (556B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <title>Bug 1375812 - Interpolation between interpolatematrix and none tranform
      5 </title>
      6 <meta charset="UTF-8">
      7 <style>
      8  #target {
      9    transition: all 10s linear;
     10    transform: translateX(100px);
     11  }
     12 </style>
     13 <script>
     14  function go() {
     15    var div = document.getElementById('target');
     16    div.style.setProperty("transform", "rotate(60deg)", "");
     17    window.getComputedStyle(div).transform;
     18    div.style.setProperty("transform", "none", "");
     19  }
     20 </script>
     21 </head>
     22 <body onload="go()">
     23 <div id="target"></div>
     24 </body>
     25 </html>