tor-browser

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

height-no-interpolation.html (648B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
      4 <link rel=help href="https://drafts.csswg.org/css-transitions-2/#transition-property-property">
      5 <link rel=help href="https://drafts.csswg.org/css-sizing/#preferred-size-properties">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <script src="/css/support/interpolation-testcommon.js"></script>
      9 
     10 <body>
     11 <script>
     12 // height is interpolable, but height:auto is not.
     13 test_no_interpolation({
     14  property: 'height',
     15  from: '0px',
     16  to: 'auto'
     17 });
     18 </script>