tor-browser

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

gradient-eval-007.html (869B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>Gradient interpolation</title>
      5  <meta name="fuzzy" content="maxDifference=1-2;totalPixels=0-10000">
      6  <link rel="author" title="Mike Bremford" href="mailto:mike@bfo.com">
      7  <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      8  <meta name="assert" content="Test gradient interpolation in LCH uses the shorter hue-interpolation method if unspecified">
      9  <link rel="match" href="gradient-eval-007-ref.html">
     10  <style>
     11   :root {
     12       --start: lch(60% 60 70);
     13       --end: lch(60% 60 290);
     14       --t: 0.5;
     15       --big: 131070000px;
     16   }
     17   .test {
     18       width: 100px;
     19       height: 100px;
     20       background: linear-gradient(in lch, var(--start) calc(var(--big) * (0 - var(--t))), var(--end) calc(var(--big) * (1 - var(--t))));
     21   }
     22 </style>
     23 </head>
     24 <body>
     25  <div class="test"></div>
     26 </body>
     27 </html>