tor-browser

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

justify-no-interpolation.html (782B)


      1 <!DOCTYPE html>
      2 <link rel=author href="mailto:jarhar@chromium.org">
      3 <link rel=help href="https://drafts.csswg.org/css-align/#justify-items-property">
      4 <link rel=help href="https://drafts.csswg.org/css-align/#justify-self-property">
      5 <link rel=help href="https://github.com/w3c/csswg-drafts/issues/4441">
      6 <link rel=help href="https://drafts.csswg.org/css-transitions-2/#transition-property-property">
      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: 'justify-items',
     15  from: 'initial',
     16  to: 'baseline'
     17 });
     18 
     19 test_no_interpolation({
     20  property: 'justify-self',
     21  from: 'initial',
     22  to: 'baseline'
     23 });
     24 </script>