tor-browser

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

gradient-analogous-missing-components-001-ref.html (796B)


      1 <!doctype html>
      2 <html lang="en">
      3 <head>
      4    <meta charset="utf-8">
      5    <title>Gradient analogous missing components carry forward logic tests</title>
      6    <link rel="author" title="CGQAQ" href="mailto:m.jason.liu@gmail.com">
      7    <link rel="author" title="一丝" href="mailto:yiorsi@gmail.com">
      8    <link rel="help" href="https://www.w3.org/TR/css-color-4/#interpolation">
      9    <style>
     10        .test {
     11            margin: 50px;
     12            width: 200px;
     13            height: 50px;
     14            border: 1px solid black;
     15            background: linear-gradient(90deg in srgb, hsl(0deg 0% 50%), yellow);
     16        }
     17    </style>
     18 </head>
     19 <body>
     20    <div class="test"></div>
     21    <div class="test"></div>
     22    <div class="test"></div>
     23    <div class="test"></div>
     24    <div class="test"></div>
     25 </body>
     26 </html>