tor-browser

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

doc_dbg-fission-frame-pause-exceptions.html (495B)


      1 <!-- Any copyright is dedicated to the Public Domain.
      2     http://creativecommons.org/publicdomain/zero/1.0/ -->
      3 <!doctype html>
      4 <html lang="en">
      5  <head>
      6    <meta charset="utf-8">
      7    <title>Test pause on exceptions in remote frame</title>
      8  </head>
      9  <body>
     10    <h2>Test pause on exceptions in remote frame (Child frame)</h2>
     11    <script type="text/javascript">
     12      try {
     13        adf();
     14      } catch (err) {
     15        console.error(err);
     16      }
     17      adf();
     18    </script>
     19  </body>
     20 </html>