tor-browser

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

embedder-context-inner.https.html (576B)


      1 <!DOCTYPE html>
      2 <html>
      3 <script src="/shared-storage/resources/util.js"></script>
      4 <script src="/fenced-frame/resources/utils.js"></script>
      5 <body>
      6 <script>
      7 
      8 async function init() {
      9  const [ancestorKey] = parseKeylist();
     10 
     11  await addModuleOnce("/shared-storage/resources/embedder-context-module.js");
     12  await sharedStorage.run("report-context",
     13                          {
     14                            data: {'ancestorKey': ancestorKey}
     15                          });
     16 
     17  await writeValueToServer(ancestorKey, "embedder_context_inner_loaded");
     18 }
     19 
     20 init();
     21 </script>
     22 </body>
     23 </html>