tor-browser

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

sandboxed-features-inner.sub.html (367B)


      1 <!DOCTYPE html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="utils.js"></script>
      4 <script src="sandboxed-features.js"></script>
      5 <body>
      6 <script>
      7 (async () => {
      8  try {
      9    await {{GET[test_func]}}();
     10  } catch (e) {
     11    writeValueToServer('{{GET[key]}}', e.message);
     12    return;
     13  }
     14  writeValueToServer('{{GET[key]}}', 'done');
     15 })()
     16 </script>
     17 </body>