tor-browser

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

repeating-conic-gradient.html (559B)


      1 <!doctype html>
      2 <meta charset="utf-8">
      3 <title>Repeating conic gradient</title>
      4 <link rel="help" href="https://drafts.csswg.org/css-images-4/#conic-gradients">
      5 <meta name="assert" content="Rendering of repeating-conic-gradient">
      6 <link rel="match" href="repeating-conic-gradient-ref.html">
      7 <meta name="fuzzy" content="maxDifference=0-47; totalPixels=0-40000">
      8 <style>
      9  #gradient {
     10    width: 200px;
     11    height: 200px;
     12    background-color: red;
     13    background-image: repeating-conic-gradient(black 0 25%, white 25% 50%);
     14  }
     15 </style>
     16 <div id="gradient"></div>