tor-browser

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

invalid-animation-range.html (356B)


      1 <!DOCTYPE html>
      2 <title>Invalid animation range</title>
      3 <body onload="runTest()">
      4  <div id="target"></div>
      5 </body>
      6 <script src="../../web-animations/testcommon.js"></script>
      7 <script>
      8  async function runTest() {
      9    const anim = target.animate(undefined, {rangeStart: "initial" });
     10    await waitForNextFrame();
     11    await waitForNextFrame();
     12  }
     13 </script>