tor-browser

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

sandboxed.html (206B)


      1 <!DOCTYPE html>
      2 <meta charset=utf-8>
      3 <script>
      4 try {
      5  let c = new BroadcastChannel('foo');
      6  parent.postMessage('Created', '*');
      7 } catch (e) {
      8  parent.postMessage('Exception: ' + e.name, '*');
      9 }
     10 </script>