tor-browser

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

corner-3.html (441B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>Test when only some of the corners have a border-radius and the border-radius is greater than the sum of the border width and the element's content area width/height</title>
      5  <style>
      6 
      7 div {
      8  width: 0px;
      9  height: 100px;
     10  border: 15px solid rgba(0,0,255,0.5);
     11  border-radius: 0 30px 30px 0;
     12  position: absolute;
     13  left: 50px;
     14  top: 50px;
     15 }
     16 
     17  </style>
     18 </head>
     19 <body>
     20  <div></div>
     21 </body>
     22 </html>