tor-browser

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

display-p3-linear-gradient.html (720B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>display-p3-linear gradient interpolation</title>
      5  <meta name="fuzzy" content="maxDifference=1-10;totalPixels=0-24000">
      6  <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      7  <meta name="assert" content="Test display-p3-linear as a gradient interpolation space. Reference generated here: https://raphlinus.github.io/color/2021/01/18/oklab-critique.html">
      8  <link rel="match" href="display-p3-linear-gradient-ref.html">
      9  <style>
     10   .test {
     11       width: 480px;
     12       height: 50px;
     13       background: linear-gradient(to right in display-p3-linear, rgb(255, 0, 0), rgb(0, 255, 0));
     14   }
     15 </style>
     16 </head>
     17 <body>
     18  <div class="test"></div>
     19 </body>
     20 </html>