tor-browser

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

enumerate_vr_on_dying_window.html (278B)


      1 <html>
      2 <head>
      3 <script>
      4 window.onload = function(){
      5  var frame = document.getElementById('test_iframe');
      6  var win = frame.contentWindow;
      7  frame.remove();
      8  win.onvrdisplayactivate = function () {}
      9 };
     10 </script></head>
     11 <body>
     12 <iframe id="test_iframe"></iframe>
     13 </body>
     14 </html>