tor-browser

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

doc_iframe_reloaded.html (345B)


      1 <!DOCTYPE html>
      2 <iframe srcdoc="<style>.grid{display:grid;}</style><div class='grid'><span>a</span><span>b</span></div>"></iframe>
      3 <script>
      4 "use strict";
      5 function reloadIFrame() { // eslint-disable-line no-unused-vars
      6  const iFrame = document.querySelector("iframe");
      7  iFrame.setAttribute("srcdoc", iFrame.getAttribute("srcdoc"));
      8 }
      9 </script>