tor-browser

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

worklet-animation-local-time-null-2-ref.html (566B)


      1 <!DOCTYPE html>
      2 <title>Setting localTime to null means effect does not apply (reftest)</title>
      3 <link rel="help" href="https://drafts.css-houdini.org/css-animationworklet/">
      4 
      5 <style>
      6 .box {
      7  width: 100px;
      8  height: 100px;
      9  background-color: green;
     10  display: inline-block;
     11 }
     12 
     13 #control {
     14  background-color: red;
     15  transform: translateY(100px);
     16 }
     17 </style>
     18 
     19 <div>
     20 <div class="box" id="target1"></div>
     21 <div class="box" id="target2"></div>
     22 <div class="box" id="target3"></div>
     23 <div class="box" id="target4"></div>
     24 <div class="box" id="control"></div>
     25 </div>
     26 
     27 </script>