tor-browser

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

discrete-no-interpolation.html (694B)


      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 <script src="/resources/testharness.js"></script>
      5 <script src="/resources/testharnessreport.js"></script>
      6 <script src="/css/support/interpolation-testcommon.js"></script>
      7 
      8 <body>
      9 <script>
     10 test_no_interpolation({
     11  property: 'column-fill',
     12  from: 'initial',
     13  to: 'auto'
     14 });
     15 
     16 test_no_interpolation({
     17  property: 'column-rule-style',
     18  from: 'initial',
     19  to: 'dashed'
     20 });
     21 
     22 test_no_interpolation({
     23  property: 'column-span',
     24  from: 'initial',
     25  to: 'all'
     26 });
     27 
     28 test_no_interpolation({
     29  property: 'column-wrap',
     30  from: 'wrap',
     31  to: 'nowrap'
     32 });
     33 </script>