tor-browser

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

doc-eval-throw.html (145B)


      1 <!DOCTYPE html>
      2 <meta charset=UTF-8>
      3 <script>
      4 function evaluateException() {
      5  try {
      6    eval("throw new Error()");
      7  } catch (e) {}
      8 }
      9 </script>