tor-browser

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

context-fill-bg-image-01.html (416B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Basic context-fill in background-image test</title>
      5    <style>
      6 
      7 div {
      8  width: 100px;
      9  height: 100px;
     10  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' fill='context-fill red'/></svg>");
     11  -moz-context-properties: fill;
     12  fill: blue;
     13 }
     14 
     15    </style>
     16  </head>
     17  <body>
     18    <div></div>
     19  </body>
     20 </html>