tor-browser

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

text-align-last-interpolation.html (1082B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>text-align-last interpolation</title>
      6    <link rel="author" title="Kiet Ho" href="mailto:tho22@apple.com">
      7    <link rel="help" href="https://drafts.csswg.org/css-text/#text-align-last-property">
      8    <meta name="assert" content="text-align-last supports discrete animation">
      9    <script src="/resources/testharness.js"></script>
     10    <script src="/resources/testharnessreport.js"></script>
     11    <script src="/css/support/interpolation-testcommon.js"></script>
     12  </head>
     13  <body>
     14    <script>
     15      test_no_interpolation({
     16        property: 'text-align-last',
     17        from: 'auto',
     18        to: 'start'
     19      });
     20 
     21      test_no_interpolation({
     22        property: 'text-align-last',
     23        from: 'justify',
     24        to: 'center'
     25      });
     26 
     27      test_no_interpolation({
     28        property: 'text-align-last',
     29        from: 'left',
     30        to: 'right'
     31      });
     32 
     33      test_no_interpolation({
     34        property: 'text-align-last',
     35        from: 'end',
     36        to: 'match-parent'
     37      });
     38    </script>
     39  </body>
     40 </html>