tor-browser

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

display-interpolation.tentative.html (608B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>display interpolation</title>
      4 <link rel="help" href="https://www.w3.org/TR/CSS2/visuren.html#display-prop">
      5 <meta name="assert" content="display supports animation">
      6 
      7 <script src="/resources/testharness.js"></script>
      8 <script src="/resources/testharnessreport.js"></script>
      9 <script src="/css/support/interpolation-testcommon.js"></script>
     10 
     11 <body>
     12  <script>
     13    test_no_interpolation({
     14      property: 'display',
     15      from: 'grid',
     16      to: 'flex',
     17      underlying: 'block',
     18      target_names: ['CSS Animations', 'Web Animations']
     19    });
     20  </script>
     21 </body>