tor-browser

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

context-stroke-opacity-02.html (477B)


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