tor-browser

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

srgb-gradient-ref.html (595B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <title>sRGB gradient interpolation</title>
      5  <link rel="author" title="Aaron Krajeski" href="mailto:aaronhk@chromium.org">
      6  <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      7  <meta name="assert" content="Test srgb as a gradient interpolation space. Reference generated here: https://raphlinus.github.io/color/2021/01/18/oklab-critique.html">
      8  <style>
      9   .test {
     10       width: 480px;
     11       height: 50px;
     12       background: url("resources/srgb-gradient.png");
     13   }
     14 </style>
     15 </head>
     16 <body>
     17  <div class="test"></div>
     18 </body>
     19 </html>