tor-browser

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

sender0.html (413B)


      1 <!DOCTYPE html>
      2 <html>
      3 <script src="/fenced-frame/resources/utils.js"></script>
      4 <body>
      5 <script>
      6 async function init() {
      7    const [ancestor_key] = parseKeylist();
      8 
      9    window.fence.reportEvent({
     10        eventType: 'click',
     11        eventData: "user clicked",
     12        destination: ['shared-storage-select-url']
     13    });
     14 
     15    writeValueToServer(ancestor_key, "sender0_reported");
     16 }
     17 
     18 init();
     19 </script>
     20 </body>
     21 </html>