tor-browser

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

image-orientation-mask-image-ref.html (374B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Reference</title>
      4 <style>
      5 div {
      6  width: 100px;
      7  height: 50px;
      8  background: blue;
      9  mask-mode: luminance;
     10 }
     11 .orient { mask-image: url(../support/exif-orientation-2-ur-pre-rotated.jpg); }
     12 .no-orient { mask-image: url(../support/exif-orientation-9-u.jpg); }
     13 </style>
     14 <div class="orient"></div>
     15 <div class="no-orient"></div>