tor-browser

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

navigate-nested-config.html (392B)


      1 <!DOCTYPE html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="utils.js"></script>
      4 <title>Navigate a fenced frame to a nested config</title>
      5 <body>
      6 <script>
      7  const [key] = parseKeylist();
      8  const configs = window.fence.getNestedConfigs();
      9  const ff = document.createElement("fencedframe");
     10  ff.config = configs[0]
     11  document.body.appendChild(ff);
     12 </script>
     13 </body>
     14 </html>