tor-browser

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

normalization-radial.html (540B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Radial gradient stop normalization</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-images-3/#radial-gradients">
      5 <meta name="assert" content="Rendering of radial-gradient with normalized color stops">
      6 <meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-40000">
      7 <link rel="match" href="reference/100x100-blue.html">
      8 <style>
      9  #gradient {
     10    width: 100px;
     11    height: 100px;
     12    background-image: linear-gradient(green -50%, blue -50%);
     13  }
     14 </style>
     15 <div id="gradient"></div>