tor-browser

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

file_context_fill_fallback_red.html (460B)


      1 <!DOCTYPE html>
      2 <!--
      3  Any copyright is dedicated to the Public Domain.
      4  http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <style>
      7  img {
      8    -moz-context-properties: fill;
      9    fill: green;
     10  }
     11 </style>
     12 <img style="width: 100px; height: 100px;">
     13 <script>
     14  let domain = location.search.substring(1);
     15  let img = document.querySelector("img");
     16  img.src = img.alt = `https://${domain}/tests/layout/svg/tests/file_context_fill_fallback_red.svg`;
     17 </script>