tor-browser

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

interpolate-size-interpolation.html (649B)


      1 <!DOCTYPE html>
      2 <meta charset="UTF-8">
      3 <title>interpolate-size animations</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-values-5/#calc-size">
      5 <script src="/resources/testharness.js"></script>
      6 <script src="/resources/testharnessreport.js"></script>
      7 <script src="/css/support/interpolation-testcommon.js"></script>
      8 <body>
      9 <script>
     10  test_not_animatable({
     11    property: 'interpolate-size',
     12    from: 'numeric-only',
     13    to: 'allow-keywords',
     14    underlying: 'numeric-only',
     15  });
     16  test_not_animatable({
     17    property: 'interpolate-size',
     18    from: 'allow-keywords',
     19    to: 'numeric-only',
     20    underlying: 'numeric-only',
     21  });
     22 </script>