tor-browser

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

context-fill-05.html (411B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>Test context-fill with different fill values (test image caching correctness)</title>
      5    <style>
      6 
      7 img {
      8  width: 100px;
      9  height: 100px;
     10  -moz-context-properties: fill;
     11 }
     12 
     13 #img1 {
     14  fill: blue;
     15 }
     16 
     17 #img2 {
     18  fill: yellow;
     19 }
     20 
     21    </style>
     22  </head>
     23  <body>
     24    <img id="img1" src="context-fill-05.svg">
     25    <img id="img2" src="context-fill-05.svg">
     26  </body>
     27 </html>