tor-browser

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

hittest-detached-iframe-crash.html (231B)


      1 <!DOCTYPE html>
      2 <script>
      3 function test() {
      4  document.body.offsetHeight;
      5  document.body.attachShadow({mode: 'closed'});
      6  iframe.contentDocument.caretRangeFromPoint(0, 0);
      7 }
      8 </script>
      9 <iframe id="iframe" onload="test()"></iframe>