tor-browser

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

touch-action-beside-display-locked-fixedpos-iframe-crash.html (555B)


      1 <!DOCTYPE html>
      2 <html class="test-wait">
      3  <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      4  <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1434550">
      5  <button id="boo"></button>
      6  <div>
      7    <iframe style="position:fixed; content-visibility:hidden;"></iframe>
      8  </div>
      9  <script>
     10    requestAnimationFrame(()=> {
     11      requestAnimationFrame(()=> {
     12        boo.style.touchAction = "pan-x";
     13        document.documentElement.classList.remove("test-wait");
     14      });
     15    });
     16  </script>
     17 </html>