tor-browser

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

duration.html (476B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>ScrollTimeline.duration</title>
      4 <link rel="help" href="https://drafts.csswg.org/web-animations-2/#dom-animationtimeline-duration">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 
      8 <script>
      9 'use strict';
     10 
     11 test(t => {
     12  const timeline = new ScrollTimeline();
     13  assert_equals(timeline.duration.toString(), '100%');
     14 }, 'The duration of a scroll timeline is 100%');
     15 
     16 </script>