tor-browser

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

nested-sandbox.html (240B)


      1 <!DOCTYPE html>
      2 <title>Return fullscreen permissions policy state</title>
      3 <script>
      4  "use strict";
      5  window.onload = () => {
      6    window.parent.postMessage(document.featurePolicy.allowedFeatures().includes("fullscreen"),"*");
      7  };
      8 </script>