tor-browser

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

grid-no-interpolation.html (1480B)


      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-grid/#auto-tracks">
      6 <link rel=help href="https://drafts.csswg.org/css-grid/#grid-auto-flow-property">
      7 <link rel=help href="https://drafts.csswg.org/css-grid/#line-placement">
      8 <link rel=help href="https://drafts.csswg.org/css-grid/#propdef-grid-template-areas">
      9 <script src="/resources/testharness.js"></script>
     10 <script src="/resources/testharnessreport.js"></script>
     11 <script src="/css/support/interpolation-testcommon.js"></script>
     12 
     13 <body>
     14 <script>
     15 test_no_interpolation({
     16  property: 'grid-auto-columns',
     17  from: 'initial',
     18  to: '123px'
     19 });
     20 
     21 test_no_interpolation({
     22  property: 'grid-auto-flow',
     23  from: 'initial',
     24  to: 'column'
     25 });
     26 
     27 test_no_interpolation({
     28  property: 'grid-auto-rows',
     29  from: 'initial',
     30  to: '123px'
     31 });
     32 
     33 test_no_interpolation({
     34  property: 'grid-column-end',
     35  from: 'initial',
     36  to: '123'
     37 });
     38 
     39 test_no_interpolation({
     40  property: 'grid-column-start',
     41  from: 'initial',
     42  to: '123'
     43 });
     44 
     45 test_no_interpolation({
     46  property: 'grid-row-end',
     47  from: 'initial',
     48  to: '123'
     49 });
     50 
     51 test_no_interpolation({
     52  property: 'grid-row-start',
     53  from: 'initial',
     54  to: '123'
     55 });
     56 
     57 test_no_interpolation({
     58  property: 'grid-template-areas',
     59  from: 'initial',
     60  to: '"."'
     61 });
     62 </script>