tor-browser

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

map-inside-map-2.html (327B)


      1 <html>
      2  <img usemap="map2" class="img-outside-map">
      3  <map name="map2"></map>
      4  <script>
      5    const img = document.createElement('img');
      6    img.className = 'img-inside-map';
      7    img.setAttribute('usemap', '#map2');
      8    img.style.visibility = 'collapse';
      9    document.querySelector('map').appendChild(img);
     10  </script>
     11 </html>