tor-browser

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

window-frameElement-inner.html (400B)


      1 <!DOCTYPE html>
      2 <script src="utils.js"></script>
      3 <title>Fenced frame content to report the value of window.frameElement</title>
      4 
      5 <body>
      6 <script>
      7 (async () => {
      8  // Report whether or not `window.frameElement` is null
      9  const [frame_element_key] = parseKeylist();
     10  let result = (window.frameElement == null) ? "PASS" : "FAIL";
     11  writeValueToServer(frame_element_key, result);
     12 })();
     13 </script>
     14 </body>