tor-browser

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

1315113-2.html (424B)


      1 <!DOCTYPE html>
      2 <html reftest-zoom="0.5">
      3 <meta charset="utf-8">
      4 <title>Test for bug 1315113: Gradient in border image</title>
      5 <style>
      6 
      7 body {
      8  margin: 0;
      9 }
     10 
     11 #box {
     12  width: 200px;
     13  border: 100px solid;
     14  border-image-source: linear-gradient(red, blue);
     15  border-image-slice: 40% 40% fill;
     16  border-image-width: 80px 80px;
     17  border-image-repeat: round stretch;
     18  background-color: black;
     19 }
     20 
     21 </style>
     22 
     23 <div id="box"></div>