tor-browser

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

clip-path-circle-4-ref.html (545B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <title>CSS Reftest Reference</title>
      5    <link rel="author" title="Dirk Schulze" href="mailto:dschulze@adobe.com">
      6    <style>
      7    body, div {
      8        padding: 0;
      9        margin: 0;
     10    }
     11 
     12    .ref {
     13        position: absolute;
     14        left: 50px;
     15        top: 50px;
     16        width: 500px;
     17        height: 500px;
     18        border-radius: 50%;
     19        background-color: green;
     20    }
     21    </style>
     22 </head>
     23 <body>
     24    <p>The test passes if there is a full green circle.</p>
     25    <div class="ref"></div>
     26 </body>
     27 </html>