tor-browser

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

iframe-contents-request-resize.html (326B)


      1 <!doctype HTML>
      2 <head>
      3 <style>
      4 * { margin: 0 }
      5 </style>
      6 <meta name="responsive-embedded-sizing">
      7 </head>
      8 <div id="target"></div>
      9 <script>
     10 window.addEventListener('load', () => {
     11  requestAnimationFrame(() => {
     12    target.style.width = '100px';
     13    target.style.height = '400px';
     14    window.requestResize();
     15  })
     16 });
     17 </script>